shithub: mc

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

View raw version
use "die.use"

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