shithub: mc

ref: 47e2fe4b898f4260414f84424929d8a7e09cd021
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)
}