Help for this page

Select Code to Download


  1. or download this
    use strict;
    
  2. or download this
    my $read;
    my @lst;
    
  3. or download this
    open (IN, "<", "dev.csv") or die "couldn't open 'dev.csv': $!\n";
    
  4. or download this
    while (my $read=<IN>)
    {
    ...
      chomp ($read);
      #...
    }