shithub: mc

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