Help for this page

Select Code to Download


  1. or download this
    
    
    #!/usr/bin/perl
    
  2. or download this
    use warnings;
    use strict;
    
  3. or download this
    
    
    open TAB, "test.txt";
    
  4. or download this
    open TAB, '<', 'test.txt' or die "Cannot open 'test.txt' $!";
    
  5. or download this
    
    
        $diff = "$tab[0]" - "$seed";
    
  6. or download this
        $diff = $tab[0] - $seed;
    
  7. or download this
    
    
    
        if ($diff ge 0.1)
    
  8. or download this
        if ($diff >= 0.1)
    
  9. or download this
    
    
    {print "@tab\n" && $seed eq $tab[0]}
    
  10. or download this
    {print "@tab\n"; $seed eq $tab[0]}