shithub: mc

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