Help for this page

Select Code to Download


  1. or download this
    my %small_hash;
    @small_hash{@interesting_keys} 
        = @$config{@interesting_keys};
    return \%small_hash;
    
  2. or download this
    # $config is given
    
    ...
    
        return \%setting_for;
    }
    
  3. or download this
    sub get_file_watcher_ref {
        my %setting_for;
    ...
        
        return \%setting_for;
    }