shithub: mc

ref: 590dd41e3e1a90ce3986ab8db1e6490f597fba3f
dir: /libstd/error.myr/

View raw version
use "die.use"

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