RosettaCodeData/Task/Array-concatenation/Smalltalk/array-concatenation.st

6 lines
70 B
Smalltalk
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
|a b c|
a := #(1 2 3 4 5).
b := #(6 7 8 9 10).
c := a,b.
c displayNl.