Append numbers at same position in strings: Difference between revisions

(Ada version)
Line 106:
next i</lang>
{{out}}<pre>11019 21120 31221 41322 51423 61524 71625 81726 91827</pre>
 
=={{header|jq}}==
{{works with|jq}}
'''Works with gojq, the Go implementation of jq'''
<lang jq>def list1 : [ range(1;10) ];
def list2 : [ range(10; 19)];
def list3 : [ range(19; 28) ];
 
[list1, list2, list3]
| transpose
| map( map(tostring) | add | tonumber)</lang>
{{out}}
<pre>
[11019,21120,31221,41322,51423,61524,71625,81726,91827]
</pre>
 
 
=={{header|Julia}}==
2,479

edits