shithub: mc

ref: 8e8d3f3d6f01046782529f853032daca2ab1976e
dir: /lib/std/option.myr/

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