Peter Scott wrote:
> 
> I want the 'try' there for my sake, not Perl's; ... it
> helps alert me that the following block is subject to non-local control 
> flow rules.

Huh? Down that road lies the Java madness.

        eval {
                foo();
        };

        sub foo {
                bar();
        }

        sub bar {
                die $barney;
        }

All three of these blocks are "subject to non-local control flow rules",
including the body of foo.

-- 
John Porter

Reply via email to