in reply to Re^2: Strange errors in CPAN modules when running on Windows 8.1
in thread Strange errors in CPAN modules when running on Windows 8.1
Cheers,C:\>perl -wle "my $x; print $x;" Use of uninitialized value $x in print at -e line 1. C:\>perl -wle "my $x; $x = 17; print $x;" 17
|
|---|