NAME
    append - append value to end of list

SYNOPSIS
    append(lst, val)

TYPES
    lst		list, &list
    val		any, &any

    return	nil

DESCRIPTION
     Append the value val on the end of the list lst.

EXAMPLE
    > lst = list(2,3,4)
    > append(lst, 5)
    > print lst

    list (4 elements, 4 nonzero):
      [[0]] = 2
      [[1]] = 3
      [[2]] = 4
      [[3]] = 5

    > append(lst, list(0,1,2))
    > print lst

    list (5 elements, 5 nonzero):
      [[0]] = 2
      [[1]] = 3
      [[2]] = 4
      [[3]] = 5
      [[4]] = list (3 elements, 2 nonzero)

LIMITS
    none

LIBRARY
    none

SEE ALSO
     delete, insert, islist, list, pop, push, remove, rsearch, search, size
