mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-10 13:29:32 -06:00
18 lines
456 B
Plaintext
18 lines
456 B
Plaintext
--# -path=.:../resource:prelude
|
|
|
|
concrete FoodCommentsIta of FoodComments = CommentsIta ** open LexIta in {
|
|
|
|
lin
|
|
Wine = regN "vino" ;
|
|
Cheese = mkN masculine "formaggio" "formaggi" ;
|
|
Fish = regN "pesce" ;
|
|
Pizza = regN "pizza" ;
|
|
Fresh = mkA "fresco" "fresca" "freschi" "fresche" ;
|
|
Warm = regA "caldo" ;
|
|
Italian = regA "italiano" ;
|
|
Expensive = regA "caro" ;
|
|
Delicious = regA "delizioso" ;
|
|
Boring = regA "noioso" ;
|
|
|
|
}
|