public class Echo {
public static void main (String[] args) {
for (String s: args) {
System.out.println(s);
if (args[2] == "help"){
System.out.println("help");
}
}
}
}
im just simply testing to see if the first argument is equal to "help" your help is much appreciated.