shithub: mc

ref: 49198982626db8548eba7342c259e302af9585f6
dir: /lib/std/option.myr/

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