Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Concerning hash operations (appending, concatenating)

by sh1tn (Priest)
on Mar 24, 2005 at 16:35 UTC ( [id://442106]=note: print w/replies, xml ) Need Help??


in reply to Concerning hash operations (appending, concatenating)

#basically the same: %h_1 = (a,1,b,2); %h_2 = (c,3,d,4); %concat = (%h_1,%h_2); print "k: $_\tv: $concat{$_}\n" for sort keys %concat; __END__ k: a v: 1 k: b v: 2 k: c v: 3 k: d v: 4


Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (3)
As of 2024-03-29 07:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found