Files
gf-core/eclipse/examples/hello/HelloAbs.gf
2011-10-17 16:01:07 +00:00

13 lines
222 B
Plaintext

abstract HelloAbs = AbsCat [Greeting, Recipient] ** {
flags startcat = Greeting ;
cat Farewell ;
fun
Hello : Recipient -> Greeting ;
Goodbye : Recipient -> Farewell ;
World, Parent, Friends : Recipient ;
}