lama_byterun/regression/test067.lama

7 lines
144 B
Text
Raw Normal View History

2020-01-14 03:30:17 +03:00
infixr ** before * (f, g) {
2019-10-14 19:44:33 +03:00
return fun (x) {return f (g (x))}
}
2019-10-16 21:07:27 +03:00
local x = read ();
2019-10-14 19:44:33 +03:00
write ((fun (x) {return x+2} ** fun (x) {return x+3})(7))