Help for this page

Select Code to Download


  1. or download this
    my @uc = ( uc("abc"), uc("def") );
    
    ...
         v
    
    my @uc = map { uc($_) } "abc", "def";
    
  2. or download this
    my %h = ( "abc" => 1, "def" => 1 );
    
    ...
         v
    
    my %h = map { $_ => 1 } "abc", "def";