shithub: mc

ref: b9cf654b6dd5daabf8fd69854443ec04b0cfcea1
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}