mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-10 21:39:32 -06:00
16 lines
239 B
Plaintext
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 ;
|
|
}
|