aboutsummaryrefslogtreecommitdiff
path: root/examples/twice.fusp
blob: 8f50b831f55e241bc06dbbe18a04bcc82285b90f (plain) (blame)
1
2
3
mul a b = code mul a b;
twice f x = f (f x);
main = twice twice twice (mul 2) 1;