shithub: mc

ref: 685a0afcb76c7509ab97fcbc639b330478598bca
dir: /libstd/error.myr/

View raw version
use "die.use"

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