The code:
BEGIN{unshift @INC, "/tmp"}
can be replaced with the more elegant:
use lib "/tmp";
Which is almost equivalent to our BEGIN block and is the recommended approach.
BEGIN
@alphabet_array = ('a' .. 'z');
-kalyan
Post a Comment
No comments:
Post a Comment