mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-23 03:32:51 -06:00
change Food to Words in Phrasebook, since it's unpractical to have many small modules; added syntactic forms and words
This commit is contained in:
25
examples/phrasebook/WordsEng.gf
Normal file
25
examples/phrasebook/WordsEng.gf
Normal file
@@ -0,0 +1,25 @@
|
||||
-- (c) 2009 Aarne Ranta under LGPL
|
||||
|
||||
concrete WordsEng of Words = SentencesEng **
|
||||
open SyntaxEng, ParadigmsEng in {
|
||||
lin
|
||||
Wine = mkCN (mkN "wine") ;
|
||||
Pizza = mkCN (mkN "pizza") ;
|
||||
Cheese = mkCN (mkN "cheese") ;
|
||||
Fish = mkCN (mkN "fish" "fish") ;
|
||||
Fresh = mkAP (mkA "fresh") ;
|
||||
Warm = mkAP (mkA "warm") ;
|
||||
Italian = mkAP (mkA "Italian") ;
|
||||
Expensive = mkAP (mkA "expensive") ;
|
||||
Delicious = mkAP (mkA "delicious") ;
|
||||
Boring = mkAP (mkA "boring") ;
|
||||
|
||||
Restaurant = mkCN (mkN "restaurant") ;
|
||||
Bar = mkCN (mkN "bar") ;
|
||||
Toilet = mkCN (mkN "toilet") ;
|
||||
|
||||
Euro = mkCN (mkN "euro" "euros") ; -- to prevent euroes
|
||||
Dollar = mkCN (mkN "dollar") ;
|
||||
Lei = mkCN (mkN "leu" "lei") ;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user