forked from GitHub/gf-core
10 lines
209 B
Plaintext
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"} ;
|
|
} |