shithub: mc

ref: 7ff7b5fec85dbfa255e92827a58ca632dbabd657
dir: /libstd/error.myr/

View raw version
use "die.use"

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