C:\ece538\hello>java Hello3 Hello big World! How are you
/** * The Hello class implements an application that * simply prints "Hello World!" to standard output. */ class Hello3 { public static void main(String[] args) { System.out.println("Hello big World!" + " How are you"); // Display the string. } }
Maintained by John Loomis, last updated 11 January 2017