shithub: mc

ref: 178ce0afad1d2ec8af4814ce5970d2e8194b849f
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}