Merge branch 'master' of github.com:dopefishh/cc1516
[cc1516.git] / examples / StmtEx.spl
index 35ff096..d52e5b7 100644 (file)
@@ -4,6 +4,7 @@ var z = 3 + y;
 Int a = facR(4);
 //Int b = test(3);
 var f = beep();
+var n = True;
 
 facR(n) :: Int -> Int {
     test(3);
@@ -15,11 +16,11 @@ facR(n) :: Int -> Int {
     return 5;
 }
 
-test(n) :: Int -> Int {
+test(n) :: Int -> Bool {
     var i = 0;
-    facR(2);
-    while (z < 3) {
-        return 3;
+    facR(z);
+    while (n < 3) {
+        return True;
     }
 }