Array concatenation: Difference between revisions

add example for SmallBASIC
(Added Run BASIC)
imported>J7M
(add example for SmallBASIC)
Line 4,202:
 
<syntaxhighlight lang="slope">(list-join [1 2 3] [4 5 6])</syntaxhighlight>
 
=={{header|SmallBASIC}}==
<syntaxhighlight lang="SmallBASIC">
A = [1,2,3]
B = [4,5,6]
 
for i in B do A << i
 
print A
</syntaxhighlight>
 
=={{header|Smalltalk}}==
Anonymous user