shithub: mc

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

View raw version
use "die.use"

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