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
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.
I went to do the following append to @INC, when I noticed these troubles in the
original @INC string. Is this only on WinPerl?
___