shithub: mc

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

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

const main = {
	var v

	v = `Some 123
	-> 0
}