shithub: mc

ref: 5c2890a66e673f159329ce55790ee6b05ebf1041
dir: /lib/std/option.myr/

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