shithub: mc

ref: 2b13f71e390a91faabcc209f44b1ec20ae0fa4ff
dir: /libstd/error.myr/

View raw version
use "die.use"

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