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,21 @@
abstract Agreement = {
cat
NP ;
CN ;
N ;
A ;
Det ;
fun
DetCN : Det -> CN -> NP ; -- this black cat
AdjCN : A -> N -> CN ; -- black cat
UseN : N -> CN ; -- cat
cat_N : N ;
house_N : N ;
black_A : A ;
big_A : A ;
-- simplification of pronouns just to make English interesting
this_Det : Det ;
these_Det : Det ;
}