mend
authorpimjager <pim@pimjager.nl>
Fri, 20 May 2016 11:10:00 +0000 (13:10 +0200)
committerpimjager <pim@pimjager.nl>
Fri, 20 May 2016 11:10:00 +0000 (13:10 +0200)
examples/codeGen.spl

index 05773b3..59e6b3c 100644 (file)
@@ -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;
 }