lama_byterun/regression/test067.expr
Dmitry Boulytchev d99588a6db FCF (alpha)
2019-10-16 21:07:27 +03:00

7 lines
No EOL
148 B
Text

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