Help for this page

Select Code to Download


  1. or download this
    #!usr/bin/env perl
    
    ...
    close (test);
    
    ### Again, the parens are unnecessary. Omit them.
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
    }
    
    close Test;
    
  3. or download this
    #!/usr/bin/perl -w
    
    ...
        s/th/TH/gi;
        print;
    }