shithub: mc

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