diff options
Diffstat (limited to 'examples/phrasebook/SentencesRon.gf')
| -rw-r--r-- | examples/phrasebook/SentencesRon.gf | 31 |
1 files changed, 27 insertions, 4 deletions
diff --git a/examples/phrasebook/SentencesRon.gf b/examples/phrasebook/SentencesRon.gf index 7043d7982..f7c404f60 100644 --- a/examples/phrasebook/SentencesRon.gf +++ b/examples/phrasebook/SentencesRon.gf @@ -1,4 +1,27 @@ -concrete SentencesRon of Sentences = NumeralRon ** SentencesI with - (Syntax = SyntaxRon), - (Symbolic = SymbolicRon), - (Lexicon = LexiconRon) ; + +concrete SentencesRon of Sentences = NumeralRon ** SentencesI - [ + IFemale, YouFamFemale, YouPolFemale, IMale, YouFamMale, YouPolMale + ] + with + (Syntax = SyntaxRon), + (Symbolic = SymbolicRon), + (Lexicon = LexiconRon) ** + open SyntaxRon, ExtraRon in { + + lin + IFemale = + {name = mkNP i8fem_Pron ; isPron = True ; poss = mkQuant i_Pron} ; + YouFamFemale = + {name = mkNP youSg8fem_Pron ; isPron = True ; poss = mkQuant youSg_Pron} ; + YouPolFemale = + {name = mkNP youPol8fem_Pron ; isPron = True ; poss = mkQuant youPol_Pron}; + IMale = + {name = mkNP i_Pron ; isPron = True ; poss = mkQuant i_Pron} ; + YouFamMale = + {name = mkNP youSg_Pron ; isPron = True ; poss = mkQuant youSg_Pron} ; + YouPolMale = + {name = mkNP youPol_Pron ; isPron = True ; poss = mkQuant youPol_Pron} ; + +} + + |
