fix escapes in literal strings
[cc1516.git] / examples / test.spl
index bdcb0ed..2a2235b 100644 (file)
@@ -1,10 +1,4 @@
-Bool n = True;
-
-test(x) {
-       return f(x);
+main(){
+       var b = '\t';
+var a = "hello \t\"world";
 }
-f(n) :: Int -> Int{
-       var m = n+1;
-       return n;
-}
-