Help for this page

Select Code to Download


  1. or download this
    sub Get_Saves {
        my @files;
    ...
        }
    return @files; 
    }##END FileName
    
  2. or download this
    our @files; # globally accessible
    
    ...
            push @files, $_;
        }
    }##END FileName