shithub: mc

ref: 3e94feff3ad92eb18eea90696b6da15daf79d059
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}