lama_byterun/regression/test098.expr

7 lines
124 B
Text
Raw Normal View History

2020-01-05 03:33:17 +03:00
infixr "**" before "*" (f, g) {
fun (x) { f (g (x))}
}
local x = read ();
write ((fun (x) { x+2} ** fun (x) { x+3})(7))