1mNAME0m
       lappend - Append list elements onto a variable

1mSYNOPSIS0m
       1mlappend 4m22mvarName24m ?4mvalue24m 4mvalue24m 4mvalue24m 4m...24m?


1mDESCRIPTION0m
       This command treats the variable given by 4mvarName24m as a list and appends
       each of the 4mvalue24m arguments to that list as a  separate  element,  with
       spaces  between elements.  If 4mvarName24m doesn't exist, it is created as a
       list with elements given by the 4mvalue24m arguments.  1mLappend 22mis similar to
       1mappend 22mexcept that the 4mvalue24ms are appended as list elements rather than
       raw text.  This command provides a relatively efficient way to build up
       large lists.  For example, ``1mlappend a $b22m'' is much more efficient than
       ``1mset a [concat $a [list $b]]22m'' when 1m$a 22mis long.


1mSEE ALSO0m
       list(n), lindex(n), linsert(n), llength(n), lsort(n), lrange(n)


1mKEYWORDS0m
