Learning Perl, 4th Edition by Randal L. Schwartz, Tom Phoenix, brian d foy The following errata were *corrected* in the 5/07 reprint. If you have technical questions or error reports, you can send them to booktech@oreilly.com. Please specify the printing date of your copy. This page was updated April 19, 2007. Here's a key to the markup: [page-number]: serious technical mistake {page-number}: minor technical mistake : important language/formatting problem (page-number): language change or minor formatting problem ?page-number?: reader question or request for clarification ####################################### {106} Exercise 4 text changed to: Make a program that prints each line with a word that contains a capital letter followed by lowercase letters. Does it match Fred but neither fred nor FRED? ####################################### {240-241} Exercise 9-1; first code block on page 241, 2nd line: unless (defined $in) -> if ( not defined $in ) ####################################### [241] Answers to exercise 9.4 changed to; while (<>) { if (/^#!/) { $_ .= "## Copyright (C) 2006 by Yours Truly!\n"; } print $_; } #######################################