shithub: mc

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