shithub: mc

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