shithub: mc

ref: 11f90555b8eb5452e665aad552557f921df1800a
dir: /libstd/option.myr/

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