churf/sample-programs/basic-7
2023-02-10 16:45:33 +01:00

5 lines
60 B
Text

add x y = x + y;
apply f x = f x;
main = apply (add 4) 6;