Help for this page

Select Code to Download


  1. or download this
    sub lowercase {
      return ( wantarray ) ? map { lc } @_ : lc $_[0];
    }
    
  2. or download this
    return ( wantarray ) ? map { lc } @_ : lc( first { $_ } @_ );