Help for this page

Select Code to Download


  1. or download this
    C:\Temp>type t.txt
    This is a test sentence. And this is another one; Also so is this.
    And by the way, this is the fourth sentence.
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    foreach (@arr) {
        print $_, "\n";
    }
    
  3. or download this
    C:\Temp>t.pl
    This is a test sentence.
    And this is another one;
    Also so is this.
    And by the way, this is the fourth sentence.