ref: 8a57984a3b3102a30ca6210f7b73dc523f620377 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) }