shithub: mc

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