/* Hello.java CIS 160 David Klick 2015-09-02 Demonstration of simple output. */ public class Hello { public static void main(String[] args) { System.out.println("Hello, world"); } }