When in Debug mode in Java, is there anything like a Console where I can type commands?
- by devoured elysium
Is it possible in Eclipse to have a Console, where when in Debug mode I can try out things? Like in python, where I can type at any moment for example 1+1 or myVariable.toString(), etc? C# has a similar concept with the F# shell.
I'd like to inspect my variables at run-time and try out some methods, having that kind of console would be of great help.
Thanks