shithub: mc

ref: 0f342c47db402a0b4ba021dab79414941180c1f0
dir: /libstd/error.myr/

View raw version
use "die.use"

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