summaryrefslogtreecommitdiff
path: root/examples/phrasebook/SentencesSpa.gf
diff options
context:
space:
mode:
Diffstat (limited to 'examples/phrasebook/SentencesSpa.gf')
-rw-r--r--examples/phrasebook/SentencesSpa.gf20
1 files changed, 20 insertions, 0 deletions
diff --git a/examples/phrasebook/SentencesSpa.gf b/examples/phrasebook/SentencesSpa.gf
new file mode 100644
index 000000000..b9880e8fb
--- /dev/null
+++ b/examples/phrasebook/SentencesSpa.gf
@@ -0,0 +1,20 @@
+concrete SentencesSpa of Sentences = NumeralSpa ** SentencesI - [
+ IFemale, YouFamFemale, YouPolFemale
+ ]
+ with
+ (Syntax = SyntaxSpa),
+ (Symbolic = SymbolicSpa),
+ (Lexicon = LexiconSpa) **
+ open SyntaxSpa, ExtraSpa, 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};
+
+}
+
+