Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Juerd's scratchpad

by Juerd (Abbot)
on Jun 01, 2004 at 17:07 UTC ( [id://358255]=scratchpad: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    - void
    - item (Scalar)
    ...
        - ...
    - list
      - types, as with item context
    
  2. or download this
    $foo + $bar        # both sides in Num item context
    $foo ~ $bar        # both sides in Str item context
    ...
    my @bar  = @foo;   # right side in list context
    my $num = +@foo;   # right side in Num item context
    print $foo, @foo;  # both variables in Str list context
    
  3. or download this
    my %hash = (a => 'b', c => 'd');  # right side in list context
    my ($pair1, $pair2) = %hash;      # right side in list context
    ...
    $pair2.value    # >>> "d"
    (e => 'f').key  # >>> "e"
    +%hash          # >>> 2           # Num item context
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found