shithub: mc

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