shithub: mc

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

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

const main = {
	var v : u

	v = `None
}