A Taylor wrote:

> Hi all, I am trying to declare some variables and was wondering what the
> best way to do this was. Is it legal to do something like this:
> my (@pairs, $ENV, $buffer);
> The reason I ask is that I am not sure if its cool to have Arrays and Scalar
> vars within the same brackets.
> Thanks for your help
>
> Anadi
>
> You are just a dewdrop, and as you meditate the dewdrop starts slipping from
> the petals of the Lotus towards the ocean. When the meditation is complete,
> the dewdrop has disappeared into the ocean. Or you can say, the ocean has
> disappeared into the dewdrop.
>
> Bhagwan Shree Rajneesh.
>
> _________________________________________________________________
> Send and receive Hotmail on your mobile device: http://mobile.msn.com

yes, it's legal to do that. @pair, $ENV and $buffer will all be tagged with
'my' scope.

david


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

Reply via email to