How to pass arguments in the Eclipse console? For example this program:
public class Eco {
public static void main(String[] args) {
for(int i=0; i<args.length; i++)
System.out.println(args[i] + " ");
System.out.println();
}
}
I was able to run normally in cmd by passing an argument and it displays, and in Eclipse?