shithub: mc

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