shithub: mc

ref: 0e987e21af03dccfe1b37141ca024f657238dfd2
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}