X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=examples%2Fexample.spl;h=4a55e3550275b4c72300329dddeb2db0b0122b61;hb=8c4ec1c3287d6c6ddefd22ef608a4d97693e7e85;hp=b4efb27f25c05ed6a10a9941ac5958004adb639b;hpb=efc7d1fda30d97e2479e0854edbf609229c5bc98;p=cc1516.git diff --git a/examples/example.spl b/examples/example.spl index b4efb27..4a55e35 100644 --- a/examples/example.spl +++ b/examples/example.spl @@ -2,6 +2,10 @@ Three ways to implement the f acto rial function in SPL. First the recursive version . */ +var r = 1; +var facN = 1; +var ok = True; + facR(n) :: Int -> Int { if (n < 2) { return 1; @@ -10,6 +14,7 @@ facR(n) :: Int -> Int { } } + //The iterative version of the factorial function facl ( n ) :: Int -> Int { var r = 1; @@ -43,7 +48,7 @@ facL (n) :: Int -> Int { } //Generates a list of integers from the first to the last argument -fromTo (from, to) :: Int Int -> [Int] { +fromTo (from, to) :: Int -> Int -> [Int] { if(from <= to){ return from:fromTo(from+1, to); } else { @@ -73,7 +78,7 @@ swap(tuple) :: (a, a) -> (a, a){ } //list append -append(l1, l2) :: [t] [t] -> [t] { +append(l1, l2) :: [t] -> [t] -> [t] { if(isEmpty(l1)){ return l2; } else {