shithub: mc

ref: 2d9fe7100209acb431e392d58e4cf4eccfde00b7
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)
}