shithub: mc

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

View raw version
use "die.use"

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