shithub: mc

ref: 4050a902f6278595dd253ec38ad7caf446ec31d8
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)
}