shithub: mc

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

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

const main = {
	var v

	v = `Some 123
	-> 0
}