append

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 and join.

Go to main index.

Go to concepts index.