mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-11 22:09:32 -06:00
19 lines
462 B
Plaintext
19 lines
462 B
Plaintext
abstract TestResource = Structural ** {
|
|
|
|
-- a random sample of lexicon to test resource grammar with
|
|
|
|
fun
|
|
Big, Happy, Small, Old, Young : AdjDeg ;
|
|
American, Finnish : Adj1 ;
|
|
Married : Adj2 ;
|
|
Man, Woman, Car, House, Light, Bar, Bottle, Wine : N ;
|
|
Walk, Run : V ;
|
|
Send, Wait, Love, Drink, SwitchOn, SwitchOff : TV ;
|
|
Give, Prefer : V3 ;
|
|
Say, Prove : VS ;
|
|
Mother, Uncle : Fun ;
|
|
Connection : Fun2 ;
|
|
Well, Always : AdV ;
|
|
John, Mary : PN ;
|
|
} ;
|