Hari Krishnaan wrote:
> Hi,
> what does the following code line mean ?
> 
> $test = "main::" . $main::$foo;

It has a syntax error, so won't compile.

Perhaps you mean:

   $test = "main::" . $main::foo;

If that's what you meant, it contatenates the string literal "main::" with
the contents of the $foo variable in package main and assigns the result to
variable $test.

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

Reply via email to