shithub: mc

ref: 416a47f74171d93f9237afede0d434bcc841e3fd
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}