Help for this page

Select Code to Download


  1. or download this
        @$spr_hash{$file_name} = <FH>;
    
  2. or download this
        @{$spr_hash{$file_name}} = <FH>;
    
  3. or download this
    use strict;
    use warnings;
    ...
    @$spr_hash{$file_name} = qw(1 2 3);
    
    print Dumper [ %spr_hash ];