Larry Wall's Apocalypse 4, the fourth installment of his series describing Perl 6, is online now at ww.perl.com. This one is all about blocks and statements and declarations and scopes, which is my kind of revelation.
Re:A question
pudge on 2002-01-21T13:33:40
They are not allowed for good reason. PRE is not allowed because it allows people to totally break the formatting of a page. CODE is not allowed because it doesn't do what you want anyway; most notably, it won't preserve whitespace (might as well just use TT). There is a hack in the code that allows you to use LITERAL, which is kinda like CODE, but it is not well-tested and needs to be better integrated into the code at some point.Re:A question
TimToady on 2002-01-22T20:13:09
PRE and POST would only fire off on that particular CATCH. The hooks in question would fire off on any CATCH within the dynamic scope.Larry