shithub: mc

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

View raw version
use "die.use"

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