shithub: mc

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

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

const main = {
	var v : u

	v = `None
}