CS1 Standard Demo Page

The following text was written to the standard output stream when the ? program was executed from IntelliJ.

#
	  

HelloWorld.java
HelloWorld.java
/* 
 * Traditional starter program. 
 */

package greetings;

public class HelloWorld
{
    public static void main(String[] args)
    {
        System.out.println("Hello World!");
    }
}