mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 13:09:33 -06:00
13 lines
246 B
Plaintext
13 lines
246 B
Plaintext
-- The Question grammar specialized to animals.
|
|
|
|
abstract Animals = Questions ** {
|
|
|
|
flags startcat=Phrase ;
|
|
|
|
fun
|
|
-- a lexicon of animals and actions among them
|
|
Dog, Cat, Mouse, Lion, Zebra : Entity ;
|
|
Chase, Eat, See : Action ;
|
|
}
|
|
|