Files
gf-core/examples-3.0/tutorial/hello/HelloEng.gf

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