Closed jho53 closed 7 years ago
For some reason, variables don't show up at all. For example, in:
class Hellothere{ public static void main(String[] args) { int a = 20; int b = 30; System.out.println(a); } }
"a" and "b" should be in the variable window, but it's empty.
Hi @CheezyP try to compile your code with debugging support javac -g Hellothere.java
javac -g Hellothere.java
Yes, that works. I'm so glad!
On a side note, might want to include that in the readme
For some reason, variables don't show up at all. For example, in:
"a" and "b" should be in the variable window, but it's empty.