summaryrefslogtreecommitdiff
path: root/examples/tutorial/hello/HelloEng.gf
blob: 69efba6b48b9b198d47b24a1a99a7266e45d03c0 (plain)
1
2
3
4
5
6
7
8
9
10
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"} ;
}