shithub: mc

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

View raw version
use "die.use"

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