Previous Up Next

5.40.13 Concatenating two lists or a list and an element: concat augment

The concat command combines to lists or adds an element to a list.
augment is a synonym for concat.

Examples


Warning.
Input:

concat([[3,4,2]],[[1,2,4]])

or:

augment([[3,4,2]],[[1,2,4]])

results in:
Output:


342124


Previous Up Next