shithub: mc

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

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

const main = {
	var v : u

	v = `None
}