HELP POPVAL                                         Steven Hardy, January 1978

    popval(<list>) -> <evaluation of list contents>

POPVAL is a procedure which takes a list as argument, and evaluates the items
in the list as POP-11 code. Thus:

    popval([2 + 2]) =>
    ** 4

POPVAL is defined as follows:

    define popval(proglist);
        dlocal proglist;
        pop11_comp_stream();
    enddefine;

See REF *POPCOMPILE for more details of the POP-11 compiler.

See also HELP
    *COMPILE    - brief summary of the COMPILE procedure
    *ITEMREAD   - reads in items from the input stream
    *SYSCOMPILE - used by COMPILE to compile its input
    *PROGLIST   - on the use and manipulation of PROGLIST
