Help for this page

Select Code to Download


  1. or download this
    print map uc($_),    qw( a b c d );  # Prints ABCD
    print map { uc($_) } qw( a b c d );  # Same thing