shithub: mc

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

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

const main = {
	var v : u

	v = `None
}