shithub: mc

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