shithub: mc

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

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