Help for this page

Select Code to Download


  1. or download this
    Useless use of lc in void context at foo line bar.
    
  2. or download this
    use strict;
    use warnings;
    ...
    my $a = "AbCdEfG";
    $a = lc($a);
    print $a;