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