shithub: mc

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

View raw version
use "die.use"

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