package demo;
/**
* The traditional first program.
*
* @author Dee A. B. Weikle
* @version 01/10/2024
*/
public class HelloWorldWelcome {
/**
* Output hello world on the screen.
*
* @param args command-line arguments
*/
public static void main(String[] args) {
System.out.println("Hello, World!");
String message = "Welcome to CS159";
System.out.println(message + " Everyone!");
}
}