shithub: mc

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