shithub: mc

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

View raw version
use "die.use"

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