Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: adding items, but with interim results

by moritz (Cardinal)
on Mar 30, 2013 at 16:27 UTC ( [id://1026291]=note: print w/replies, xml ) Need Help??


in reply to adding items, but with interim results

I know you probably want a solution in Perl 5, but here is one in Perl 6, because it hapepns to be very short:

$ perl6 -e 'say [\+] 0, 1, 3, 2' 0 1 4 6

Enclosing an infix operator like + with square brackets applies it to a list, as if you had written  0 + 1 + 4 + 6. The [\infix] for also returns the intermediate results.

Mnemonic: the [\ has the shape of a triangle, just like the list of expressions that is generated from it:

0 0 + 1 0 + 1 + 4 0 + 1 + 4 + 6

Log In?
Username:
Password:

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

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

    No recent polls found