Mainly to get rid of one top level directory. But this will also be useful when there are tests of the embedding API.
9 lines
128 B
Plaintext
9 lines
128 B
Plaintext
var Nonlocal = "outer"
|
|
|
|
{
|
|
var Nonlocal = "inner"
|
|
IO.print(Nonlocal) // expect: inner
|
|
}
|
|
|
|
IO.print(Nonlocal) // expect: outer
|