shithub: mc

ref: c05e4d021a24645c06092dda39c6befdf77ec813
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}