shithub: mc

ref: 939f632c16cadc94f03173c274c2a55535088bb6
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}