New parameter for main method
public class Main { public static void main(String... args) { for (String arg : args) { System.out.println(arg); } } }