Help for this page

Select Code to Download


  1. or download this
    sub slurp
    {
    ...
      $/ = $save;
      return @list;
    }
    
  2. or download this
    my @list = <FIL>;
    
  3. or download this
    my $input = do { local $/; <FIL> };
    
  4. or download this
    for (my $i=1; $i <= $pop->Count(); $i++)
    
  5. or download this
    for my $i(1..$pop->Count())