shithub: mc

ref: ae494e5d5cbc5ff8094f47efdec22898d84dde63
dir: /test/nestfn.myr/

View raw version
use std
/* checks that nested functions without environment capture work. should
* exit with 42. */
const main = {
	const ret42 = {
		-> 42
	}
	std.exit(ret42())
}