X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=examples%2Ftest.spl;h=85acc01047b51343f6d7fe31d668bb7d6b4c96eb;hb=e33962666f8af6a34432d57180eb322f4543eb78;hp=bdcb0edb0b1566a6bf9bb78aeff8d8dc069a5951;hpb=72fb877d00efbba5cc4540ee2e76fbb01c6f572d;p=cc1516.git diff --git a/examples/test.spl b/examples/test.spl index bdcb0ed..85acc01 100644 --- a/examples/test.spl +++ b/examples/test.spl @@ -1,10 +1,3 @@ -Bool n = True; - -test(x) { - return f(x); +main(){ + var a = "hello world"; } -f(n) :: Int -> Int{ - var m = n+1; - return n; -} -