Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^3: Problems with map(function, array)

by eyepopslikeamosquito (Archbishop)
on Dec 10, 2012 at 21:36 UTC ( [id://1008169]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    sub twice { 2 * $_[0] }
    my @a = map twice, 1..3;
    print "@a\n";
    
  2. or download this
    use strict;
    use warnings;
    sub twice { 2 * $_[0] }
    my @a = map twice($_), 1..3;
    print "@a\n";
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (4)
As of 2024-04-16 04:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found