last year's lecture material moved to directory 2025

This commit is contained in:
aarneranta
2026-03-30 07:43:08 +02:00
parent 088f52a0f6
commit 9d0f650881
39 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
S ::= NP VP ;
NP ::= Det CN ;
NP ::= Pron ;
CN ::= AP CN ;
CN ::= N ;
VP ::= V2 NP ;
AP ::= A ;
Det ::= "the" ;
N ::= "cat" ;
A ::= "black" ;
V2 ::= "sees" ;
Pron ::= "us" ;