shithub: mc

ref: 69823fb059b309c0d78b819ea331489c206b83b3
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}