Input/Output for pairs of numbers: Difference between revisions

Content deleted Content added
Chunes (talk | contribs)
added a solution for Factor
Chunes (talk | contribs)
Line 221:
=={{header|Factor}}==
<lang factor>
USEUSING: math.parser splitting ;
: process-line ( str -- n )
" " split [ string>number ] map-sum ;