shithub: mc

ref: 635dfa9043c05bc875bc5c3a77b48ea768b730f0
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}