8 lines
101 B
Plaintext
8 lines
101 B
Plaintext
|
fun outer() {
|
||
|
var x = "outside";
|
||
|
fun inner() {
|
||
|
print x;
|
||
|
}
|
||
|
inner();
|
||
|
}
|
||
|
outer();
|