Hi perl scripters!
I have a problem.
I have some arrays in file config.pl with names @a,@b,@c etc. I want to use their lenght from another file in loop like change only name of the arrays. Script works if I put in expression the name of array:
for ($br=0; $br<=$#config::a; $br++) {}
How to pass on the name of array like parameter in above expression?