5 lines
80 B
Text
5 lines
80 B
Text
add = { a, b | a + b }
|
|
|
|
doit = { f, a, b | f a, b }
|
|
|
|
p doit ->add 1 2 #prints 3
|