fixed example
authorpimjager <pim@pimjager.nl>
Mon, 29 Feb 2016 13:04:13 +0000 (14:04 +0100)
committerpimjager <pim@pimjager.nl>
Mon, 29 Feb 2016 13:04:13 +0000 (14:04 +0100)
src/example.spl

index b3f6b95..58d037e 100644 (file)
@@ -3,7 +3,7 @@
        First the recursive version .
 */
 facR(n) :: Int -> Int {
-       if (n }< 2) {
+       if (n < 2) {
                return 1;
        } else {
                return n * facR(n-1);