schala/closure.maaru
2017-09-19 22:11:01 -07:00

12 lines
86 B
Plaintext

fn outer() {
fn inner(a) {
a + 10
}
inner(20) + 8.3
}
outer()