shithub: mc

ref: 42230832997d2092cad72a775e738ab2d50df1dc
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}