mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
20 lines
501 B
Plaintext
20 lines
501 B
Plaintext
concrete FoodEng of Food = {
|
|
lincat
|
|
Comment, Item, Kind, Quality = Str ;
|
|
lin
|
|
Pred item quality = item ++ "is" ++ quality ;
|
|
This kind = "this" ++ kind ;
|
|
That kind = "that" ++ kind ;
|
|
Mod quality kind = quality ++ kind ;
|
|
Wine = "wine" ;
|
|
Cheese = "cheese" ;
|
|
Fish = "fish" ;
|
|
Very quality = "very" ++ quality ;
|
|
Fresh = "fresh" ;
|
|
Warm = "warm" ;
|
|
Italian = "Italian" ;
|
|
Expensive = "expensive" ;
|
|
Delicious = "delicious" ;
|
|
Boring = "boring" ;
|
|
}
|