package week1_variables_if_else; /** * Display a simple "Hello World" message. If this runs on your computer, you've got Java etc. set up correctly. */ public class HelloWorld { public static void main(String args[]) { System.out.println("Hello World"); } }