shithub: mc

ref: ed3f53a7de0be0705fb0637e94e731808e7cd09c
dir: /test/match.myr/

View raw version
const m = {v
	match v
	1:	-> 42;;
	2:	-> 81;;
	3:	-> 123;;
	4:	-> 99;;
	_:	-> 8
	;;
}

const main = {
	-> m(2)
}