shithub: mc

ref: ecff997d01c7a7c5c74a08fda15dc2fedcc8a0af
dir: /libstd/option.myr/

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