shithub: mc

ref: 4519f3ff10c67f4f965433be4ec50e3552de276f
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}