CS1 Standard Demo Page

The following text was written to the standard output stream when the /* * Traditional starter program */ package greetings; public class HelloWorld { public static void main(String[] args) { System.out.println("Hello world!"); } } program was executed from IntelliJ.

Hello world!