shithub: mc

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

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

const main = {
	var v : u

	v = `None
}