shithub: mc

ref: 0a90d87daea7bf0a97dfc7d65cc1ef0ae9806c30
dir: /test/matchtup.myr/

View raw version
use std

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

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