shithub: mc

ref: 31d5350f573cf2b2c176082ae26de473ee1f885c
dir: /test/mkunion.myr/

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

const main = {
	var v

	v = `Some 123
	-> 0
}