shithub: mc

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