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

Re^3: Perl Syntax

by davido (Cardinal)
on Oct 31, 2013 at 00:24 UTC ( [id://1060483]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    foreach ( $a, $b ) {
      $hash{$_} = $new;
    }
    
  2. or download this
    foreach my $item_alias ( $a, $b ) {
      $hash{$item_alias} = $new;
    }
    
  3. or download this
    $hash{$a} = $new;
    $hash{$b} = $new;
    

Log In?
Username:
Password:

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

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

    No recent polls found