shithub: mc

ref: 575cd5a2034d9bfe97fc2275df76631383fa0898
dir: /test/mkunion.myr/

View raw version
type u = union
	`Some int
	`None
;;

const main = {
	var v

	v = `Some 123
	-> 0
}