shithub: mc

ref: 226ef2e101258817ee3c41a28846c607d880a69c
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}