shithub: mc

ref: ac2b69008a453fb8da4116636da2587ceb03db63
dir: /libstd/error.myr/

View raw version
use "die.use"

pkg std =
	type error(@a, @b) = union
		`Success	@a
		`Failure	@b
	;;
;;