[next][up][top][index]
search for:

append -- add to the end of a list

append(v,x) -- yields the list obtained by appending x to the list v. Similarly if v is a sequence.

i1 : append( {a,b,c}, x )

o1 = {a, b, c, x}

o1 : List

See also:

  • prepend -- add to the beginning of a list
  • join -- join lists
  • Ways to use append :

  • append(BasicList,Thing)

  • [next][up][top][index]
    search for: