shithub: mc

ref: 9f6970511aa381ee085c0f6797a4acd280a9464f
dir: /libstd/error.myr/

View raw version
use "die.use"

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