5 lines
60 B
Text
5 lines
60 B
Text
add x y = x + y;
|
|
|
|
apply f x = f x;
|
|
|
|
main = apply (add 4) 6;
|