shithub: mc

ref: 905f4d10a78e7e2f6eb849cf373b14cd78c87d73
dir: /test/matchunion.myr/

View raw version
use std
/* checks that union matching works, at least on the key.
exits with 84. */
type u = union
	`Foo
	`Bar
	`Baz
	`Quux
;;

const main = {
	var v

	v = `Foo
	match v
	| `Bar:	std.exit(42)
	| `Baz:	std.exit(81)
	| `Foo:	std.exit(84)
	| `Quux:	std.exit(123)
	;;
}