shithub: mc

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

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

const main = {
	var v : u

	v = `None
}