shithub: mc

ref: 481445dc78bd2bbc733acfaf3f10ad0b8b4b2441
dir: /libstd/error.myr/

View raw version
use "die.use"

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