sub lowercase { return ( wantarray ) ? map { lc } @_ : lc $_[0]; } #### return ( wantarray ) ? map { lc } @_ : lc( first { $_ } @_ );