fix escapes in literal strings
[cc1516.git] / examples / test.spl
index b33297c..2a2235b 100644 (file)
@@ -1,15 +1,4 @@
-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 b = '\t';
+var a = "hello \t\"world";
 }