shithub: mc

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

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

const main = {
	var v : u

	v = `None
}