shithub: mc

ref: 41c790aa25a1457849e76fd748f10329e74ccd2c
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}