shithub: mc

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

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