shithub: mc

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