/* This program prints the string "hello", followed by a blank, then followed by the first command line argument. */ class Hello { // main method is here public static void main(String[] args) { System.out.println("hello " + args[0]); } }