Help for this page

Select Code to Download


  1. or download this
    BEGIN { *SCALAR::uc = \&CORE::uc }
    
  2. or download this
    sub SCALAR::uc { CORE::uc($_[0]); }
    
  3. or download this
    sub SCALAR::uc { goto &CORE::uc; }