Files
gf-core/examples/regulus/toy0/example-based/Toy0.gf
2007-06-27 12:50:42 +00:00

16 lines
239 B
Plaintext

-- toy0 grammar from Chapter 2 of the Regulus book
abstract Toy0 = {
flags startcat=NP ;
cat
NP ;
Noun ;
Spec ;
fun
SpecNoun : Spec -> Noun -> NP ;
One, Two : Spec ;
Felis, Canis : Noun ;
}