shithub: mc

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