mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-20 10:19:32 -06:00
18 lines
201 B
Plaintext
18 lines
201 B
Plaintext
abstract Toy0 = {
|
|
|
|
-- grammar from Chapter 2 of the Regulus book
|
|
|
|
flags startcat=NP ;
|
|
|
|
cat
|
|
NP ; Noun ; Spec ;
|
|
|
|
fun
|
|
SpecNoun : Spec -> Noun -> NP ;
|
|
|
|
One, Two : Spec ;
|
|
Felis, Canis : Noun ;
|
|
|
|
}
|
|
|