ref: 2989b27ec70e6b762a3766a723ebeeff3617ad8e 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) }