mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-22 11:19:32 -06:00
arrived to the module system
This commit is contained in:
31
doc/tutorial/PaleolithicEng.gf
Normal file
31
doc/tutorial/PaleolithicEng.gf
Normal file
@@ -0,0 +1,31 @@
|
||||
concrete PaleolithicEng of Paleolithic = {
|
||||
lincat
|
||||
S, NP, VP, CN, A, V, TV = {s : Str} ;
|
||||
lin
|
||||
PredVP np vp = {s = np.s ++ vp.s} ;
|
||||
UseV v = v ;
|
||||
ComplTV tv np = {s = tv.s ++ np.s} ;
|
||||
UseA a = {s = "is" ++ a.s} ;
|
||||
This cn = {s = "this" ++ cn.s} ;
|
||||
That cn = {s = "that" ++ cn.s} ;
|
||||
Def cn = {s = "the" ++ cn.s} ;
|
||||
Indef cn = {s = "a" ++ cn.s} ;
|
||||
ModA a cn = {s = a.s ++ cn.s} ;
|
||||
Bird = {s = "bird"} ;
|
||||
Boy = {s = "boy"} ;
|
||||
Louse = {s = "louse"} ;
|
||||
Man = {s = "man"} ;
|
||||
Snake = {s = "snake"} ;
|
||||
Worm = {s = "worm"} ;
|
||||
Big = {s = "big"} ;
|
||||
Green = {s = "green"} ;
|
||||
Rotten = {s = "rotten"} ;
|
||||
Thick = {s = "thick"} ;
|
||||
Warm = {s = "warm"} ;
|
||||
Laugh = {s = "laughs"} ;
|
||||
Sleep = {s = "sleeps"} ;
|
||||
Swim = {s = "swims"} ;
|
||||
Eat = {s = "eats"} ;
|
||||
Kill = {s = "kills"} ;
|
||||
Wash = {s = "washes"} ;
|
||||
}
|
||||
Reference in New Issue
Block a user