Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Dart

Idiom #166 Concatenate two lists

Create the list ab containing all the elements of the list a, followed by all the elements of the list b.

var ab = a + b;

Concatenating the lists a and b together with the + operator.
(def ab (concat a b))

New implementation...