lama_byterun/lama-compiler/regression/test056.lama

12 lines
No EOL
108 B
Text

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