summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorbringert <unknown>2005-02-25 14:13:13 +0000
committerbringert <unknown>2005-02-25 14:13:13 +0000
commit370125adc9de3379a3d1f08026ca87dcaf086e16 (patch)
treecb6272bdf3abaf3c6ea78057cd5e9374a1a2bdbb /examples
parented4fd3555596207b886d2af2f322d46ba8eabe9f (diff)
Added pronouns to stoneage grammar.
Diffstat (limited to 'examples')
-rw-r--r--examples/stoneage/Stoneage.gf9
-rw-r--r--examples/stoneage/StoneageEng.gf11
2 files changed, 20 insertions, 0 deletions
diff --git a/examples/stoneage/Stoneage.gf b/examples/stoneage/Stoneage.gf
index a51d4af46..9b1358852 100644
--- a/examples/stoneage/Stoneage.gf
+++ b/examples/stoneage/Stoneage.gf
@@ -78,6 +78,15 @@ fun
Few : CN -> NP ;
Other : CN -> NP ;
+ -- Pronouns
+
+ I : NP ;
+ You_One : NP ;
+ He : NP ;
+ We : NP ;
+ You_Many : NP ;
+ They : NP ;
+
-- People
Woman : CN ;
Man : CN ;
diff --git a/examples/stoneage/StoneageEng.gf b/examples/stoneage/StoneageEng.gf
index 13a85f252..d9a95fa22 100644
--- a/examples/stoneage/StoneageEng.gf
+++ b/examples/stoneage/StoneageEng.gf
@@ -80,6 +80,17 @@ lin
Few = DetNP few_Det ;
Other = DetNP other_Det ;
+ -- Pronouns
+
+ I = i_NP ;
+ You_One = thou_NP ;
+ He = he_NP ;
+ We = we_NP ;
+ You_Many = you_NP ;
+ They = they_NP ;
+
+ -- Nouns
+
Woman = UseN woman_N ;
Man = UseN man_N ;
Person = UseN person_N ;