shithub: mc

ref: 6a4f50b69edba3548b265cbcb99c5dbd7ada04c5
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)
}