Help for this page

Select Code to Download


  1. or download this
    map { $_ => 1 } @array
    
  2. or download this
    { map { $_ => 1 } @array }
    
  3. or download this
    keys %{ {map {$_ => 1} @array} }
    
  4. or download this
    print map "$_\n", keys %{ {map {$_ => 1} @array} };