shithub: mc

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

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

const main = {
	var v : u

	v = `None
}