shithub: mc

ref: e58d30a59ec10780261848f93dd9971cf3860e3d
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}