1
0
forked from GitHub/gf-core
Files
gf-core/doc/tutorial/HelloEng.gf
2007-08-14 14:09:25 +00:00

10 lines
209 B
Plaintext

concrete HelloEng of Hello = {
lincat Greeting, Recipient = {s : Str} ;
lin
Hello rec = {s = "hello" ++ rec.s} ;
World = {s = "world"} ;
Mum = {s = "mum"} ;
Friends = {s = "friends"} ;
}