Files
comp-syntax-gu-mlt/lectures/lecture-05/Agreement.gf
2025-04-13 21:49:19 +02:00

18 lines
347 B
Plaintext

abstract Agreement = {
cat
NP ;
CN ;
N ;
A ;
Det ;
fun
DetCN : Det -> CN -> NP ; -- the black cat
AdjCN : A -> N -> CN ; -- black cat
UseN : N -> CN ; -- cat
cat_N : N ;
black_A : A ;
the_Sg : Det ;
the_Pl : Det ;
}