lama_byterun/regression/test098.lama

7 lines
118 B
Text
Raw Permalink 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))}
}
var x = read ();
2020-01-05 03:33:17 +03:00
write ((fun (x) { x+2} ** fun (x) { x+3})(7))