shithub: mc

ref: 3aac04fb7bef769b7d3fc6389c7dd76ea196fdc0
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}