Help for this page

Select Code to Download


  1. or download this
    a;b;1;foo
    j;k;2;dog
    m;n;3;cat
    y;z;1;bar
    
  2. or download this
    #!/usr/bin/perl -w
    
    ...
    my $lines= join('', @rows );
    print "string: $lines";
    exit;
    
  3. or download this
    $ ./at.pl 
    string: a;b;1;foo
    y;z;1;bar
    $