Help for this page

Select Code to Download


  1. or download this
    my @caps = map uc, @lower;
    
  2. or download this
    sub my_uc (_) {  # note underscore in parentheses
      my $c = shift;
      return uc($c);
    }