Skip to content

Instantly share code, notes, and snippets.

View matrush's full-sized avatar

Chaoshuai Lü matrush

View GitHub Profile
@matrush
matrush / JavaDebugger
Last active December 20, 2015 00:59
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)