shithub: mc

ref: a252f51ddd3d85944a26a2f84e5d885eed504b98
dir: /libstd/result.myr/

View raw version
use "die.use"

pkg std =
	type result(@a, @b) = union
		`Ok	@a
		`Fail	@b
	;;
;;