shithub: mc

ref: f4f2253f78a010e8ba652c405e611e5524fc19f7
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}