shithub: mc

ref: e1f5c300e0985422ef62acf841b43614fd58937b
dir: /lib/std/result.myr/

View raw version
pkg std =
	type result(@a, @b) = union
		`Ok	@a
		`Err	@b
	;;
;;