shithub: mc

ref: 55689b41f0e746d20e0af174c8075ca29669a6f7
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}