mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
9 lines
283 B
CFEngine3
9 lines
283 B
CFEngine3
S ::= NP VP ;
|
|
VP ::= V | TV NP | "is" A ;
|
|
NP ::= "this" CN | "that" CN | "the" CN | "a" CN ;
|
|
CN ::= A CN ;
|
|
CN ::= "boy" | "louse" | "snake" | "worm" ;
|
|
A ::= "green" | "rotten" | "thick" | "warm" ;
|
|
V ::= "laughs" | "sleeps" | "swims" ;
|
|
TV ::= "eats" | "kills" | "washes" ;
|