HELP UNPACKITEM                                       A. Sloman May 1982

    unpackitem(WORD or INT) -> LIST

If given a word as argument, -unpackitem- returns a list of
single-character words, for example:

    unpackitem("cat") =>
    ** [c a t]

If given an integer as argument, -unpackitem- returns a list of its
component integers, for example:

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

Also see:

    *PACKITEM   --- creates a single word or integer from a list of them
    *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/unpackitem
--- Copyright University of Sussex 1992. All rights reserved. ----------
