shithub: mc

ref: 052fc6c33c0c5a945591d08933bfeada909d1fdb
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}