lecture 1 examples

This commit is contained in:
aarneranta
2026-03-30 17:28:42 +02:00
parent 9d0f650881
commit c0bc9c85f2
2 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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" ;