I am trying to learn how to use the Java Command Line input in Eclipse.
I have a very simple method that prints out a name.
How would I change this method so that from the command line input in Java Eclipse I can run the main method and put in different names to print?
If I can understand this I can then go forward and try something more complex.
Thank you in advance
public static void main(String[] args) {
System.out.println("cosmo");
}