ref: 014b76121ce587c0197eb02e9b9b13db998a3968 dir: /test/closure.myr/
/* checks that functions with environment capture work. should exit with 42. */ const main = { var a = 42 var f = {b -> a + b } -> f(13) }