Last active
December 20, 2015 00:59
-
-
Save matrush/6045884 to your computer and use it in GitHub Desktop.
Tiny Java Debugger.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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