shithub: mc

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

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