shithub: mc

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

View raw version
use "die.use"

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