shithub: mc

ref: b866f72bea03c0ee457d73abeb64db185958ddb2
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}