shithub: mc

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

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