shithub: mc

ref: 72ad21bc126ddcf29780bba789a3fbc7d8d34ff8
dir: /libstd/error.myr/

View raw version
use "die.use"

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