in reply to RE: RE: My first JAPH (a project to learn more perl)
in thread My first JAPH (a project to learn more perl)
qw(one two three four five six); print $array[$#array]; # prints "six"
is actually just obfuscation for this:$j[$#j+1] = ("another");
push @j, "another";
|
|---|