mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-10 05:29:30 -06:00
19 lines
407 B
Plaintext
19 lines
407 B
Plaintext
--# -path=.:../resource:prelude
|
|
|
|
|
|
concrete FoodCommentsEng of FoodComments = CommentsEng ** open LexEng in {
|
|
|
|
lin
|
|
Wine = regN "wine" ;
|
|
Cheese = regN "cheese" ;
|
|
Fish = mkN "fish" "fish" ;
|
|
Pizza = regN "pizza" ;
|
|
Fresh = mkA "fresh" ;
|
|
Warm = mkA "warm" ;
|
|
Italian = mkA "Italian" ;
|
|
Expensive = mkA "expensive" ;
|
|
Delicious = mkA "delicious" ;
|
|
Boring = mkA "boring" ;
|
|
|
|
}
|