summaryrefslogtreecommitdiff
path: root/examples/peacekeeping/PeaceLexCommon.gf
diff options
context:
space:
mode:
authorbjorn <bjorn@bringert.net>2008-08-15 20:21:12 +0000
committerbjorn <bjorn@bringert.net>2008-08-15 20:21:12 +0000
commit137133b742f38c76d2354047ecc9d4af88826d42 (patch)
tree40b29781c11c6c9effd89c08ce7d6501a1bdedd0 /examples/peacekeeping/PeaceLexCommon.gf
parent66c927937ad8ba4055a30c87c4455186535804dd (diff)
Added peacekeeping example back in. Doesn't compile yet.
Diffstat (limited to 'examples/peacekeeping/PeaceLexCommon.gf')
-rw-r--r--examples/peacekeeping/PeaceLexCommon.gf90
1 files changed, 90 insertions, 0 deletions
diff --git a/examples/peacekeeping/PeaceLexCommon.gf b/examples/peacekeeping/PeaceLexCommon.gf
new file mode 100644
index 000000000..75abaebdf
--- /dev/null
+++ b/examples/peacekeeping/PeaceLexCommon.gf
@@ -0,0 +1,90 @@
+abstract PeaceLexCommon = PeaceCat ** {
+
+ fun
+
+ -- Pronouns
+
+ i_Pron : Pron ;
+ youSg_Pron : Pron ;
+ he_Pron : Pron ;
+ we_Pron : Pron ;
+ youPl_Pron : Pron ;
+ they_Pron : Pron ;
+ whoPl_IP : IP ;
+ whoSg_IP : IP ;
+ whatPl_IP : IP ;
+ whatSg_IP : IP ;
+
+ this_NP : NP ;
+ that_NP : NP ;
+
+ -- Determiners
+
+ aSg_Det : Det ;
+ aPl_Det : Det ;
+ theSg_Det : Det ;
+ thePl_Det : Det ;
+ that_Det : Det ;
+ those_Det : Det ;
+ this_Det : Det ;
+ these_Det : Det ;
+
+ -- Adverbs
+
+ here_Adv : Adv ;
+ there_Adv : Adv ;
+ where_IAdv : IAdv ;
+ when_IAdv : IAdv ;
+
+ -- Numerals
+
+-- Causes too much ambiguity
+-- one_Det : Det ;
+ two_Num : Num ;
+ three_Num : Num ;
+ four_Num : Num ;
+ five_Num : Num ;
+
+ -- Adjectives
+
+ black_A : A ;
+ blue_A : A ;
+ cold_A : A ;
+ green_A : A ;
+ hot_A : A ;
+ red_A : A ;
+ small_A : A ;
+ white_A : A ;
+ yellow_A : A ;
+
+ -- Nouns
+
+ airplane_N : N ;
+ animal_N : N ;
+ blood_N : MassN ;
+ boat_N : N ;
+ boy_N : N ;
+ child_N : N ;
+ factory_N : N ;
+ foot_N : N ;
+ girl_N : N ;
+ hand_N : N ;
+ head_N : N ;
+ house_N : N ;
+ leg_N : N ;
+ man_N : N ;
+ road_N : N ;
+ water_N : MassN ;
+ woman_N : N;
+
+ -- Verbs
+ breathe_V : V ;
+ eat_V2 : V2 ;
+ drink_V2 : V2 ;
+ give_V3 : V3 ;
+ have_V2 : V2;
+ see_V2 : V2 ;
+ sleep_V : V ;
+ walk_V : V ;
+
+} \ No newline at end of file