Help for this page

Select Code to Download


  1. or download this
    my @array = qw( Larry Curly Moe );
    
    ...
    @stooges{ @array } = ( 0 .. $#array );
    
    print "$_ = $stooges{$_}\n" for keys %stooges;
    
  2. or download this
    %stooges = map { 'var' . $_ , $array[$_] } 0 .. $#array;