6
votes
What constitutes effective Perl training for non-Perl developers?
The most important thing you can show them is how to access the documentation, and how to find it (perldoc perltoc, perldoc -q $keyword, perldoc -f $function …
1
vote
Is there some way to make variables like $a and $b in regard to strict?
$a and $b are just global variables. You can achieve similar effects by simply declaring $k and $v:
use strict;
our ($k, $v);
…
