shithub: mc

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