This commit is contained in:
Korjavin Ivan 2013-08-13 20:39:25 +06:00
parent b61eba73fb
commit 90b79ea04a

View File

@ -112,9 +112,9 @@ $a =~ s/foo/bar/g; # replaces ALL INSTANCES of foo with bar in $a
#### Using Perl modules
# Perl modules provide a range of features to help you avoid reinventing the wheel, and can be downloaded from CPAN ( http://www.cpan.org/ ). A number of popular modules are included with the Perl distribution itself.
Perl modules provide a range of features to help you avoid reinventing the wheel, and can be downloaded from CPAN ( http://www.cpan.org/ ). A number of popular modules are included with the Perl distribution itself.
# perlfaq contains questions and answers related to many common tasks, and often provides suggestions for good CPAN modules to use.
perlfaq contains questions and answers related to many common tasks, and often provides suggestions for good CPAN modules to use.
#### Further Reading