N00blet soup
		Date: 11/29/10 
		(Web Development)    Keywords: programming, java, web
Hello!  Long time lurker first time poster.  I am just beginning my adventures with web programming, and am trying to make an application within the Netbeans IDE that says "Hello World!"

My code is
package bigjava;    
public class HelloPrinter
    {
        public static void main(String[] args)
        {
            // Display a greeting in the console window
              System.out.println("Hello, World!");
        }
    }
I just created a project called BigJava after the textbook Big Java 3rd edition.  Java is case sensitive and my subfolder is in all lower case.  When I run it the application doesn't have any errors, but it also doesn't print out the "Hello, World" that I desire.
Any thoughts?  If this isn't appropriate for the community let me know.  Thanks for any advice or thoughts!
Source: https://webdev.livejournal.com/570056.html