shithub: mc

ref: 3df8885d396e1bc36fe25a329bc4e63400126ecf
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())
}