shithub: mc

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

View raw version
use "die.use"

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