Errata

Learning Perl

Errata for Learning Perl

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released. If the error was corrected in a later version or reprint the date of the correction will be displayed in the column titled "Date Corrected".

The following errata were submitted by our customers and approved as valid errors by the author or editor.

Color key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted By Date submitted Date corrected
Printed
Page 86
last line of last example on page

An open brace ({) is used instead of a closed brace (}). That is the code currently
reads:

while(defined($line = <STDIN>)) {
print "I saw $line";
{

However I believe the intent of the above example was supposed to be:

while(defined($line = <STDIN>)) {
print "I saw $line";
}

Anonymous   
Printed
Page 194
third line

system 'for in *;
should be:
system 'for i in *;

Anonymous