shithub: mc

ref: 85b45ea79140abbf66a2a3c1c7a89476697c8654
dir: /libstd/error.myr/

View raw version
use "die.use"

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