Catamorphism: Difference between revisions

Content deleted Content added
Chunes (talk | contribs)
added a solution for Factor
Line 500:
 
val concatenation : string = "12345678910"
</pre>
 
=={{header|Factor}}==
 
<lang factor>{ 1 2 4 6 10 } 0 [ + ] reduce .</lang>
{{out}}
<pre>
23
</pre>