Skip to content

Instantly share code, notes, and snippets.

@dinsaw
Last active August 29, 2015 14:11
blog
public class EchoPro {
/**
* @param args stores Command Line Arguments
*/
public static void main(String[] args) {
System.out.println("args.length : " + args.length);
for (int i = 0; i < args.length; i++) {
System.out.println("args["+i+"] : " + args[i]);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment