shithub: mc

ref: 34aa8c1dd116b9148c469c992ee7f21d39d99c3c
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}