- or download this
#NOTE THE CODE: local($nmbr_items) = @some_array;
#DOESNT WORK SO ALWAYS DECLARE IT FIRST.
- or download this
while (read directory) {
add to temp array;
...
while (loopvars tell us were still in the loop) {
generate return array
}
- or download this
my @returnvalue;
while(read directory) {
...
add value to @returnvalue
}
return @returnvalue;