shithub: mc

ref: 4e190b47af90933b642fe868238db2d4e801a98e
dir: /lib/std/option.myr/

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