mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 21:19:31 -06:00
16 lines
220 B
Plaintext
16 lines
220 B
Plaintext
abstract Abstract = {
|
|
|
|
cat
|
|
S ; NP ; V2 ; Conj ;
|
|
|
|
fun
|
|
PredV2 : V2 -> NP -> NP -> S ;
|
|
ReflV2 : V2 -> NP -> S ;
|
|
ConjNP : Conj -> NP -> NP -> NP ;
|
|
|
|
And, Or : Conj ;
|
|
John, Mary, Bill : NP ;
|
|
See, Whip : V2 ;
|
|
|
|
}
|