Skip to content

Instantly share code, notes, and snippets.

@matrush
Last active December 20, 2015 00:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matrush/6045884 to your computer and use it in GitHub Desktop.
Save matrush/6045884 to your computer and use it in GitHub Desktop.
Tiny Java Debugger.
void debug(Object...os) { System.err.println(Arrays.deepToString(os)); }
//Print anything that supports toString() Method in Java
//Arrays show in format like: [[1, 2, 3], [4, 5, 6]]
//Also cloud be used by debug(a, b, c, d)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment