.
[cc1516.git] / examples / test.spl
1 Bool n = True;
2
3 test(x) {
4 return f(x);
5 }
6 f(n) :: Int -> Int{
7 var m = n+1;
8 return n;
9 }
10