shithub: mc

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

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

const main = {
	var v

	v = `Some 123
	-> 0
}