in reply to Re^2: Weird Perl Rule I'm Probably Not Following
in thread Weird Perl Rule I'm Probably Not Following
strict would have complained about variables not being declared, and warnings would have warned you about using things like $s = @var[1].use strict; use warnings;
|
|---|