1
0
forked from GitHub/gf-core
Files
gf-core/examples/tutorial/hello/HelloEng.gf
2007-08-16 16:18:54 +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"} ;
}