shithub: mc

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