shithub: mc

ref: 35bde60621ecf5cbcf07b743cafd9724f87faccb
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}