shithub: mc

ref: 0075208c293571c32b5eb23c47f67ee8defc613f
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}