Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: @_ still mystifies me

by cLive ;-) (Prior)
on Jun 01, 2002 at 15:33 UTC ( [id://170920]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my @lexlist = @_ or sort keys %lexicon;
    
    # read as
    (my @lexlist = @_) or (sort keys %lexicon);
    
  2. or download this
    my @lexlist = @_ || sort keys %lexicon;
    
    # read as
    my @lexlist = (@_ || sort keys %lexicon);
    
  3. or download this
    my @lexlist = (@_ or sort keys %lexicon);
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://170920]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (5)
As of 2024-04-24 03:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found