shithub: mc

ref: 95e600ae6adf84bdb9c90304c405285e50b919dd
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}