lama_byterun/regression/test061.expr

10 lines
104 B
Text
Raw Normal View History

2019-09-24 01:12:04 +03:00
fun plus (x) {
fun f (y) {
return x + y
}
return f
}
write (plus(5)(6));
write (plus(8)(10))