in reply to Re^3: unexpected result using '>='in thread unexpected result using '>='
my $x = 3; my $y = 20; if ($x ge $y) { print "$x ge $y\n"; } [download]