Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    my $str = "abc";
    uc($str);
    print $str;
    
  2. or download this
    use strict;
    
    my $str = "abc";
    $str = uc($str);
    print $str;