mirror of
https://github.com/GrammaticalFramework/comp-syntax-gu-mlt.git
synced 2026-04-08 21:29:32 -06:00
14 lines
162 B
CFEngine3
14 lines
162 B
CFEngine3
S ::= NP VP ;
|
|
VP ::= V NP ;
|
|
NP ::= Det CN ;
|
|
CN ::= A CN ;
|
|
CN ::= N ;
|
|
NP ::= Pron ;
|
|
|
|
Det ::= "the" ;
|
|
A ::= "black" ;
|
|
N ::= "cat" ;
|
|
V ::= "sees" ;
|
|
Pron ::= "us" ;
|
|
|