Help for this page

Select Code to Download


  1. or download this
    while(<IN1>)        {
    chomp;    
    ...
        push @lengths, length($_);
            }
    }
    
  2. or download this
    while (<IN1>)
    {
        chomp;
        push @lengths, length $_ unless />/;
    }
    
  3. or download this
    while(<IN2>)        {
    chomp;    
    ...
        push @source, $_;
            }
    }
    
  4. or download this
    chomp, push @source, $_ while <IN2>;