shithub: mc

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

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

const main = {
	var v : u

	v = `None
}