shithub: mc

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