lama_byterun/lama-compiler/regression/test056.lama

12 lines
108 B
Text
Raw Normal View History

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