"John W. Krahn" schreef:

> BTW $$_[0] is usually written as $_->[0].

I think it is a pity that O::Deparse() doesn't do this:

$ perl -MO=Deparse -e '$$_[0] = 1'
$$_[0] = 1;
-e syntax OK

$ perl -MO=Deparse -e '$_->[0] = 1'
$$_[0] = 1;
-e syntax OK

-- 
Affijn, Ruud

"Gewoon is een tijger."

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to