lama_byterun/regression/test093.lama

12 lines
No EOL
110 B
Text

fun plus (x) {
fun f (y) {
x + y
}
f
}
var x = read ();
write (plus(5)(6));
write (plus(8)(10))