Help for this page

Select Code to Download


  1. or download this
    %hash = map
      +(++$i % 2 ? lc($_) : $_),
    ...
    this => thAT
    these => Those
    foo => BAR
    
  2. or download this
    %hash = map
      # the + before the parenthesis was a way of
    ...
        This => 'thAT',
        THESE => 'Those',
      );