Help for this page

Select Code to Download


  1. or download this
    for (@arr) {
      $_ = uc;
    }
    
  2. or download this
    for my $index (@arr) {
      $index = uc $index;
    }