shithub: mc

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

View raw version
use "die.use"

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