summaryrefslogtreecommitdiff
path: root/next-lib/src/german/MakeStructuralGer.gf
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2008-11-14 17:32:34 +0000
committeraarne <aarne@cs.chalmers.se>2008-11-14 17:32:34 +0000
commitd5fa908250517476d69fae92ec7648a207007c0a (patch)
treec0b685f8e506cc64d0b9260239cb0c7e26452167 /next-lib/src/german/MakeStructuralGer.gf
parentf2a5937120e4c9d0e633f252b50a008746422a07 (diff)
rules for constructing structural words (separate from Paradigms - is this desirable?)
Diffstat (limited to 'next-lib/src/german/MakeStructuralGer.gf')
-rw-r--r--next-lib/src/german/MakeStructuralGer.gf11
1 files changed, 11 insertions, 0 deletions
diff --git a/next-lib/src/german/MakeStructuralGer.gf b/next-lib/src/german/MakeStructuralGer.gf
new file mode 100644
index 000000000..8f5006df9
--- /dev/null
+++ b/next-lib/src/german/MakeStructuralGer.gf
@@ -0,0 +1,11 @@
+--# -path=.:../common:../abstract
+
+resource MakeStructuralGer = open CatGer, ParadigmsGer, MorphoGer, Prelude in {
+
+oper
+ mkConj : Str -> Str -> Number -> Conj = \x,y,n ->
+ {s1 = x ; s2 = y ; n = n ; lock_Conj = <>} ;
+ mkSubj : Str -> Subj = \x ->
+ {s = x ; lock_Subj = <>} ;
+
+}