Array concatenation: Difference between revisions

m
m (Fixed white space)
Line 2,412:
=={{header|Ursa}}==
<lang ursa>#
# array concatenation
#
 
# create two streams (the ursa equivalent of arrays)
# a contains the numbers 1-10, b contains 11-20
Line 2,427 ⟶ 2,424:
 
# append the values in b to a
append b<i> a
for (set i 0) (< i (size b)) (inc i)
append b<i> a
end for
 
# output a to the console
Anonymous user