shithub: mc

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

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

const main = {
	var v

	v = `Some 123
	-> 0
}