shithub: mc

ref: 6e142ac75f8c01e514061bef033d4aa03856caa2
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}