Files
comp-syntax-gu-mlt/lectures/lecture-05/Agreement.gf
2025-04-13 18:34:38 +02:00

13 lines
276 B
Plaintext

abstract Agreement = {
cat
S ;
CN ;
V ;
N ;
A ;
Det ;
fun
PredVPS : CN -> V -> S ; -- the black cats run
DetCN : Det -> CN ; -- the black cat
AdjCN : N -> A -> CN ; -- black cats
}