12 lines
86 B
Plaintext
12 lines
86 B
Plaintext
|
|
||
|
|
||
|
fn outer()
|
||
|
fn inner(a)
|
||
|
a + 10
|
||
|
end
|
||
|
|
||
|
inner(20) + 8.3
|
||
|
end
|
||
|
|
||
|
outer()
|