shithub: mc

ref: cec7bf1244ec1c3f4fbd8c6edb8cddd72d82ed92
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}