lama_byterun/regression/test067.expr

5 lines
128 B
Text
Raw Normal View History

2019-10-14 19:44:33 +03:00
infixr "**" before "*" (f, g) {
return fun (x) {return f (g (x))}
}
write ((fun (x) {return x+2} ** fun (x) {return x+3})(7))