next | previous | forward | backward | up | top | index | toc | home

append(BasicList,Thing) -- append an element to a list

Synopsis

Description

The result will have the same class.
i1 : append((a,b,c),z)

o1 = (a, b, c, z)

o1 : Sequence
i2 : append({a,b,c},z)

o2 = {a, b, c, z}

o2 : List

See also