diff options
Diffstat (limited to 'examples/phrasebook/SentencesCat.gf')
| -rw-r--r-- | examples/phrasebook/SentencesCat.gf | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/phrasebook/SentencesCat.gf b/examples/phrasebook/SentencesCat.gf new file mode 100644 index 000000000..07d806ba1 --- /dev/null +++ b/examples/phrasebook/SentencesCat.gf @@ -0,0 +1,20 @@ +concrete SentencesCat of Sentences = NumeralCat ** SentencesI - [ + IFemale, YouFamFemale, YouPolFemale + ] + with + (Syntax = SyntaxCat), + (Symbolic = SymbolicCat), + (Lexicon = LexiconCat) ** + open SyntaxCat, ExtraCat, Prelude in { + + lin + IFemale = + {name = mkNP i8fem_Pron ; isPron = True ; poss = mkDet i_Pron} ; + YouFamFemale = + {name = mkNP youSg8fem_Pron ; isPron = True ; poss = mkDet youSg_Pron} ; + YouPolFemale = + {name = mkNP youPol8fem_Pron ; isPron = True ; poss = mkDet youPol_Pron}; + +} + + |
