Help for this page

Select Code to Download


  1. or download this
    @list = <IN>; #slurps whole into @list
  2. or download this
    while (<IN>)
    {
    ...
       my @list2 = split ' ', <IN>;
       my @diff  = pairwise { $b - $a } @list2, @list1;
    }
    
  3. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    
    33.490 33.839 32.059 32.072 33.425 33.349 
    34.709