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

Re: Context tutorial

by ikegami (Patriarch)
on Jan 25, 2009 at 04:09 UTC ( [id://738748]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my ($x) = localtime();     # Example 4
    
  2. or download this
    my $x = () = localtime();
    
  3. or download this
    my ($x) = f();        # first element of list is assigned
    my $x = ( f() )[0];   # same, but overkill
    my $x = ( f() )[-1];  # last element of list is assigned
    my $x =  ( f() )[0]   # logical-or of the first elements
          || ( g() )[0];  #    returned by f() and by g()
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (3)
As of 2024-04-18 23:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found