shithub: mc

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

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

const main = {
	var v

	v = `Some 123
	-> 0
}