shithub: mc

ref: efef5c18f16cbff92400e6198ddb666b640a6adc
dir: /lib/std/option.myr/

View raw version
pkg std =
	type option(@a) = union
		`None
		`Some @a
	;;
;;