summaryrefslogtreecommitdiff
path: root/gf-book/examples/chapter9/hebrew/Grammar.gf
diff options
context:
space:
mode:
Diffstat (limited to 'gf-book/examples/chapter9/hebrew/Grammar.gf')
-rw-r--r--gf-book/examples/chapter9/hebrew/Grammar.gf20
1 files changed, 20 insertions, 0 deletions
diff --git a/gf-book/examples/chapter9/hebrew/Grammar.gf b/gf-book/examples/chapter9/hebrew/Grammar.gf
new file mode 100644
index 000000000..5d491c281
--- /dev/null
+++ b/gf-book/examples/chapter9/hebrew/Grammar.gf
@@ -0,0 +1,20 @@
+abstract Grammar = {
+
+cat
+ Cl ; NP ; VP ; AP ; CN ; Det ; N ; A ; V ; V2 ;
+
+fun
+ PredVP : NP -> VP -> Cl ;
+ ComplV2 : V2 -> NP -> VP ;
+ DetCN : Det -> CN -> NP ;
+ ModCN : CN -> AP -> CN ;
+
+ UseV : V -> VP ;
+ UseN : N -> CN ;
+ UseA : A -> AP ;
+
+ a_Det, the_Det : Det ;
+ this_Det, these_Det : Det ;
+ i_NP, she_NP, we_NP : NP ;
+
+}