Perl Debugger Pocket Reference by Richard Foley The following errata were *corrected* in the 8/04 reprint: 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 {4} URL in the middle of the page http://www.oreilly.com/the-perl-debugger/code NOW READS: http://examples.oreilly.com/9780596528935 {27} Example at end of "p" section; $bar = bless({foo=$foo}, 'Foo')> ^ ^ NOW READS: $bar = bless({'foo' => $foo}, 'Foo') {32} Example near bottom page for 'x'; $bar = {foo=$foo,depth2=>{depth3=>'here'}} ^ ^ NOW READS: $bar = {'foo' => $foo,depth2=>{depth3=>'here'}} {90} 1st paragraph, the first line; DB<3> o arraydepth=2 NOW READS: DB<3> o arrayDepth=2 {90} Last code segment, the first debugger command: DB<1> %hash = ('this = 'that', 'and' => 'so on') NOW READS: DB<1> %hash = ('this' => 'that', 'and' => 'so on') {126} Pre-Post Prompt Commands section; Pre-debugger < ... NOW READS: Pre-Pperl < ... AND Post-debugger > NOW READS: Post-perl > ... AND Per-perl { ... NOW READS: Per-debugger