add string literals
[cc1516.git] / examples / test.spl
index b33297c..85acc01 100644 (file)
@@ -1,15 +1,3 @@
-Bool n = True;
-
-test(x) :: Int -> Int {
-       var y = test(x+1);
-       return y;
-}
-
-f(n) :: Int -> Int{
-       var m = n+1;
-       return n;
-}
-
-test2(x) {
-       return f(x);
+main(){
+       var a = "hello world";
 }