shithub: mc

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

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

const main = {
	var v : u

	v = `None
}