shithub: mc

ref: 73b7b068a03c3d58e12cad05dea5a2008af78952
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}