C:\ece538\hello>java Hello Hello, world! Have fun
/** * The Hello class implements an application that * simply prints "Hello Worsild!" to standard output. */ class Hello { public static void main(String[] args) { System.out.format("%s\n","Hello, world!"); System.out.print("Have fun"); } }