shithub: mc

ref: 2a75839b66139c8e402fe6e40992b0fd3c9b01c8
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}