Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re^3: adding items, but with interim results

by LanX (Saint)
on Mar 31, 2013 at 00:24 UTC ( [id://1026310]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
       DB<104> @x=1..4
     => (1, 2, 3, 4)
    ...
    
      DB<106> my $z; my @y = map { $z += $_ } @x;
     => (1, 3, 6, 10)
    
  2. or download this
      DB<107> my @y; { 
               my $z;
    ...
    
      DB<109> my @y = do { my $z; map { $z += $_ } @x }
     => (1, 3, 6, 10)
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (3)
As of 2024-04-25 17:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found