shithub: mc

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