shithub: mc

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

View raw version
use "die.use"

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