mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-14 07:38:03 +01:00
7 lines
83 B
Plaintext
7 lines
83 B
Plaintext
{
|
|
var local = "local"
|
|
new Fn {
|
|
IO.print(local) // expect: local
|
|
}.call
|
|
}
|