Java – Why does the return statement not print anything to the console?

java

I Googled it and I didn't hit anything useful, so I decided to ask on here.
I can't use System.out.println for the project that I am working on, so I used the return statement. Everything compiles just fine, but my return statement doesn't print anything to the console, the program just terminates. All I have in the code is just an if-else statement that returns true or false. Why don't I see anything on the console?
I am using Eclipse Juno's Console by the way.

Best Answer

Return just returns a value from a method, it doesn't print it. You'll need to use the System.out method or something similar.