shithub: mc

ref: 7c284022867d6a453b72e90235c8a86ce13fcccc
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}