shithub: mc

ref: 28c7a3df5e83d66ff94937da059dcb90800d4884
dir: /test/union.myr/

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

const main = {
	var v : u

	v = `None
}