shithub: mc

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

View raw version
use "die.use"

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