shithub: mc

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