shithub: mc

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

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

const main = {
	var v

	v = `Some 123
	-> 0
}