HELP PACKITEM                                             A. Sloman 1982
                                         Revised: Adrian Howard Mar 1992

    packitem(LIST) -> WORD or INT

Given a list of words, -packitem- concatenates them into a single word,
e.g.

    packitem([cat er pillar]) =>
    ** caterpillar

    packitem([w a r t h o g]) =>
    ** warthog

Given a list of integers between 0 and 9, -packitem- concatenates them
into a single integer, e.g.

    packitem([ 1 3 5]) =>
    ** 135

Also see:

    *UNPACKITEM --- Converts a word or number into a list of single
                    characters
    *EXPLODE    --- Puts all the elements of a data structure onto the
                    stack
    *SUBWORD    --- Creates a smaller 'subword' from a word
    *CONSWORD   --- Creates a word from a string
    *WORDS      --- On forming words in POP-11



--- C.all/help/packitem
--- Copyright University of Sussex 1992. All rights reserved. ----------
