in reply to Re^3: unexpected result using '>='
in thread unexpected result using '>='

But you almost never want to use ge for comparing numbers. For example,
my $x = 3; my $y = 20; if ($x ge $y) { print "$x ge $y\n"; }
will print "3 ge 20".