shithub: mc

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

View raw version
use "die.use"

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