ref: 654eb21dce9327393d64b13d3eb3cbc8db35fe3b dir: /test/closure.myr/
use std const main = { var a, b, c, fn a = 111 b = 555 c = 333 fn = { var x x = 666 std.put("{}{}{}{}\n", a, b, c, x) } fn() }