shithub: mc

ref: 2c814b34375827b994cd448160304c18ddbbeb5c
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}