shithub: mc

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

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

const main = {
	var v

	v = `Some 123
	-> 0
}