shithub: mc

ref: 08cf7754b28fc26034bd752022e47ed516686210
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}