lama_byterun/regression/test098.lama

7 lines
No EOL
118 B
Text

infixr ** before * (f, g) {
fun (x) { f (g (x))}
}
var x = read ();
write ((fun (x) { x+2} ** fun (x) { x+3})(7))