shithub: mc

ref: 1f34af29ac758ceba1d08cb4f8c0fca41dc35502
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}