shithub: mc

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

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