George Szynal <[EMAIL PROTECTED]> wrote:
> 1. There is a dot at the end of the default @INC path string
> 2. There is no comma or any seperator between the paths in 
>    that string.

It's not a string; it's an array.

Try this.

  foreach (@INC) {
    print "$_\n";
  }

You'll notice that the dot is actually a member
of the array -- dot is the current directory.

-- 
Steve

perldoc -qa.j | perl -lpe '($_)=m("(.*)")'

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to