mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-16 20:28:04 +01:00
14 lines
113 B
Plaintext
14 lines
113 B
Plaintext
var f = null
|
|
|
|
{
|
|
var a = "a"
|
|
f = fn {
|
|
IO.write(a)
|
|
IO.write(a)
|
|
}
|
|
}
|
|
|
|
f.call
|
|
// expect: a
|
|
// expect: a
|