Append numbers at same position in strings: Difference between revisions

Added XPL0 example.
m (rm commentary based on updated task description)
(Added XPL0 example.)
Line 106:
<pre>
[11019, 21120, 31221, 41322, 51423, 61524, 71625, 81726, 91827][11019, 21120, 31221, 41322, 51423, 61524, 71625, 81726, 91827]
</pre>
 
=={{header|XPL0}}==
<lang XPL0>intI;forI:=1to9do[IntOut(0,I*10000+(I+9)*100+I+18);ChOut(0,^ )]</lang>
{{out}}
<pre>
11019 21120 31221 41322 51423 61524 71625 81726 91827
</pre>
772

edits