shithub: mc

ref: 1b09d79abf7fbb487958224eb148dd66bf38b253
dir: /libstd/error.myr/

View raw version
use "die.use"

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