shithub: mc

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

View raw version
use "die.use"

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