Files
gf-core/lib/resource/doc/example/Animals.gf
2005-02-18 13:53:29 +00:00

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 ;
}