1
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 managed to run normally on cmd passing an argument and it displays, and on Eclipse?