When writing code, for debugging purposes, you typically add System.out.println("something to print"), which prints to the output window of the IDE.
When you compile your code to a JAR or an EXE, hence running the application outside the IDE, does the application still print? or do print statements get ignored?