shithub: mc

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

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

const main = {
	var v : u

	v = `None
}