shithub: mc

ref: 90c065621cb9245e996dd379270ffa7c277d13db
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}