I have a method and want to examine variables inside it without debugging - is it possible in Java?
I do not want to write tons of code like:
Syste
You can use System.out.println to print out variables. Example:
System.out.println
int i = 42; System.out.println("i:" + i);