diff options
Diffstat (limited to 'examples/twice.fusp')
-rw-r--r-- | examples/twice.fusp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/twice.fusp b/examples/twice.fusp index 8f50b83..a978df8 100644 --- a/examples/twice.fusp +++ b/examples/twice.fusp @@ -1,3 +1,4 @@ -mul a b = code mul a b; +// Set ulimit -s 16384 before running this. +add a b = code add a b; twice f x = f (f x); -main = twice twice twice (mul 2) 1; +main = twice twice twice twice (add 1) 0; |