shithub: mc

ref: 914c9055fd4e28b93b1aaa17fcc1791518f125f3
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}