lama_byterun/regression/test098.lama

7 lines
120 B
Text
Raw Normal View History

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