Hi
import static java.lang.System.*;
class _ {
static public void main(
String... __A_V_) {
String $ = "";
for (int x=0;++x< __A_V_.length
$ += __A_V_[x];
out.println($);
}
}
invocation =
java _ - A .
Output is A.
I thought it would be _-A. because it takes the args and plonks them into a String... iterates through these adding them to the string and spitting it out but I am clearly missing something here, is it to do with java syntax invocation that means the _ - do not reach the args method???
help very welcome, though I am sure I will figure it out eventually....