shithub: mc

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

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

const main = {
	var v : u

	v = `None
}