From: pimjager Date: Fri, 20 May 2016 11:10:00 +0000 (+0200) Subject: mend X-Git-Url: https://git.martlubbers.net/?a=commitdiff_plain;h=b0bac6addd89fe2b013bfbdafe74b6990953ea3b;p=cc1516.git mend --- diff --git a/examples/codeGen.spl b/examples/codeGen.spl index 05773b3..59e6b3c 100644 --- a/examples/codeGen.spl +++ b/examples/codeGen.spl @@ -35,7 +35,7 @@ main() { [Int] x1 = 8 : 2 : []; (Bool, Int) z = (True, 2); var y = z.fst; - var x = (True, 5); - x.snd = 8; + var x = (True, 5) : (False,0) : []; + x.hd.snd = 8; return; }