lama_byterun/regression/test093.lama

12 lines
110 B
Text
Raw Normal View History

2020-01-05 03:33:17 +03:00
fun plus (x) {
fun f (y) {
x + y
}
f
}
var x = read ();
2020-01-05 03:33:17 +03:00
write (plus(5)(6));
write (plus(8)(10))