shithub: mc

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

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

const main = {
	var v : u

	v = `None
}