shithub: mc

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