mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-11 13:59:31 -06:00
13 lines
281 B
Plaintext
13 lines
281 B
Plaintext
abstract Animals = {
|
|
cat
|
|
Phrase ; Animal ; Action ;
|
|
fun
|
|
Who : Action -> Animal -> Phrase ;
|
|
Whom : Animal -> Action -> Phrase ;
|
|
Answer : Animal -> Action -> Animal -> Phrase ;
|
|
|
|
Dog, Cat, Mouse, Lion, Zebra : Animal ;
|
|
Chase, Eat, Like : Action ;
|
|
}
|
|
|