lama_byterun/regression/test067.expr
2019-10-14 19:44:33 +03:00

5 lines
No EOL
128 B
Text

infixr "**" before "*" (f, g) {
return fun (x) {return f (g (x))}
}
write ((fun (x) {return x+2} ** fun (x) {return x+3})(7))