shithub: mc

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