1
0
forked from GitHub/gf-core

arrived to the module system

This commit is contained in:
aarne
2005-04-16 16:02:03 +00:00
parent 1a893c4c6a
commit b76b27773c
5 changed files with 394 additions and 38 deletions

View File

@@ -0,0 +1,16 @@
abstract Paleolithic = {
cat
S ; NP ; VP ; CN ; A ; V ; TV ;
fun
PredVP : NP -> VP -> S ;
UseV : V -> VP ;
ComplTV : TV -> NP -> VP ;
UseA : A -> VP ;
This, That, Def, Indef : CN -> NP ;
ModA : A -> CN -> CN ;
Bird, Boy, Man, Louse, Snake, Worm : CN ;
Big, Green, Rotten, Thick, Warm : A ;
Laugh, Sleep, Swim : V ;
Eat, Kill, Wash : TV ;
}