shithub: mc

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

View raw version
use "die.use"

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