shithub: mc

ref: 4a22a055638ba409f6232d4ac6967c0fa20eade4
dir: /libstd/error.myr/

View raw version
use "die.use"

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