J�r�me Quelin <[EMAIL PROTECTED]> wrote:
> perl -pe'11..&' is the same as:
> while(<>){
> 11..&;
> } continue {
> print;
> }
>
[snip]
> But second part is a call to the 'Main::' subroutine,
> which does not exist: perl crashes.You mean the main::; subroutine. The semicolon is interpreted as the name of a sub. -- Keith C. Ivey <[EMAIL PROTECTED]> Washington, DC
