ref: 120dc534b06fd3f9611fd15b0de76ccaa5eeb53b dir: /test/nestfn.myr/
use std /* checks that nested functions without environment capture work. should * exit with 42. */ const main = { const ret42 = { -> 42 } std.exit(ret42()) }