/* 8/28/2019 * your name * CISC 1115 * This is our very first program, it * displays the words Hello World to the screen. */ public class Hello { public static void main(String[] args) { System.out.println("Hello World!"); // display Hello World } }