Help for this page

Select Code to Download


  1. or download this
    my %fileInfo = find(...);
    
    ...
       $fileInfo{$fileName} = $fileName;
       return %fileInfo;
    }
    
  2. or download this
    my %fileInfo;
    
    ...
       ...
       $fileInfo{$fileName} = $fileName;
    }
    
  3. or download this
    my @fileNames;
    
    ...
       ...
       push @fileNames, $fileName;
    }
    
  4. or download this
    my %fileInfo = func();
    
    ...
       ...put stuff in %fileInfo...
       return %fileInfo;
    }
    
  5. or download this
    my %fileInfo = func();
    
    ...
       ...put stuff in %fileInfo...
       return %fileInfo;  # Return the local variable.
    }
    
  6. or download this
    my %fileInfo;
    
    ...
       # Work with a global variable.
       ...put stuff in %fileInfo...
    }