shithub: mc

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