shithub: mc

ref: 30ae6dbd5eb7c7f8c9c76a32723dd33c5f90978b
dir: /test/matchtup.myr/

View raw version
use std

const main = {
	var v = (1, 2)

	match v
	(1, x):	-> 40 + x;;
	_:	std.die("Wat");;
	;;
	-> 0
}