in reply to Re^4: going through an array
in thread going through an array
It shouldn't matter. Can you post a test case that demonstrates that it does?
#! perl use strict; use warnings; use Test::More tests => 1; my $x = 100; my $y = 100 . "\n"; cmp_ok( $x, '==', $y, 'numeric comparison should numify SVs' );
|
|---|