shithub: mc

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