shithub: mc

ref: 527b74f79517336b3ef11c963e86658527aa96cd
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}