*** empty log message ***

This commit is contained in:
peb
2004-06-15 18:24:17 +00:00
parent 3fb91e0f44
commit aa9f1ee7a3
10 changed files with 158 additions and 4 deletions

View File

@@ -8,6 +8,8 @@ NP = {s : Str};
V = {s : Str};
N = {s : Num => Str ; g : Gen};
D = {s : Gen => Str ; n : Num};
PP = {s : Str};
P = {s : Str};
lin
cyclic x = x;
@@ -15,14 +17,18 @@ mkS x y = {s = x.s ++ y.s};
mkVP x y = {s = x.s ++ y.s};
mkNP1 x y = {s = x.s ! y.g ++ y.s ! x.n};
mkNP2 x = {s = x.s ! Pl};
mkNP3 x y = {s = x.s ++ y.s};
mkPP x y = {s = y.s ++ x.s};
robin = {s = "Robin"};
dog = {s = table {Sg => "hund" ; Pl => "hundar"} ; g = Utr};
child = {s = table {_ => "barn"} ; g = Neu};
love = {s = "älskar"};
hate = {s = "hatar"};
one = {s = table {Utr => "en" ; Neu => "ett"} ; n = Sg};
hate = {s = variants{"hatar"; "avskyr"}};
one = {s = variants{table {Utr => "en" ; Neu => "ett"};
table {Utr => "någon" ; Neu => "något"}} ; n = Sg};
all = {s = table {_ => "alla"} ; n = Pl};
inside = {s = variants{"i"; "inuti"}};
}