ref: f16bf0e4f8dd5f23b41cfbfa6c24fd0ab79e6dad 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()) }