Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: dereference array

by tobyink (Canon)
on Dec 03, 2013 at 13:24 UTC ( [id://1065415]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    print $edits[0][0], "\n";
    print $edits[1][0], "\n";
    # etc
    
  2. or download this
    print join('|', map $_->[0], @edits), "\n";
    
  3. or download this
    my @edits = map $_->[0], @{ $timestamps{$page} } ;
    print Dumper @edits;
    print join('|', @edits), "\n";
    

Log In?
Username:
Password:

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

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

    No recent polls found