--- Silvio Luis Leite Santana <[EMAIL PROTECTED]> wrote:
> Thank you very much for your help
> about Perl.
> 
> There's just something I didn't get yet.
> When I write
> 
> *PI = 5;
> 
> What am I really doing?

I think you meant 

  *PI = \5;

Which is assigning the glob PI a reference to a literal scalar, which
will be therefore stored in the scalar slot of the glob.
That means that $PI will now have an UNEDITABLE value of 5 (though you
could still reassign to *PI if you wanted....)


__________________________________________________
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/

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

Reply via email to