shithub: mc

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

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

const main = {
	var v : u

	v = `None
}