shithub: mc

ref: 937e5e744d303c722c7782209f94c706b8f4c22a
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}