shithub: mc

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