shithub: mc

ref: 6361a241f462769284053e07d51cd0638d3e94af
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}