shithub: mc

ref: 73c6d49bb6ef0b41559f7acd5929accbb4697bc7
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}