Help for this page

Select Code to Download


  1. or download this
    my %names = map { $_ => '' } qw(foo bar baz);
    
    ...
    # access individually
    
    print "$names{foo}\n";
    
  2. or download this
    my @names = ('') x 6;
    
    ...
    # access individually
    
    print "$names[2]\n"; # prints 3rd element