aboutsummaryrefslogtreecommitdiff
path: root/examples/twice.fusp
blob: a978df809130de932e62ff4fd4f6a5118ff5dd60 (plain) (blame)
1
2
3
4
// Set ulimit -s 16384 before running this.
add a b = code add a b;
twice f x = f (f x);
main = twice twice twice twice (add 1) 0;