/* * Hello to command line parameters * This program will have a run time crash if started with fewer than 3 command line params * Created: Aug 14, 2023 * @author gtowell */ public class HelloGeoff { public static void main(String[] args) { System.out.println("Hello" + args[0]); System.out.println("Hello" + args[1]); System.out.println("Hello" + args[2]); } }