shithub: mc

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