RosettaCodeData/Task/Array-concatenation/Fantom/array-concatenation.fantom

6 lines
62 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
> a := [1,2,3]
> b := [4,5,6]
> a.addAll(b)
> a
[1,2,3,4,5,6]