
INLINE -- How to invoke inline (in memory) REXX programs
--------------------------------------------------------

To run:

    inline

You will be asked to type in some lines of REXX code.  The code will
then be executed directly by RexxStart() without writing it to a file.


Notes
-----

Nothing too tricky about this one.  One of the things you can pass
to RexxStart is a pointer to a buffer with a REXX program in it, and
it will execute it instead of looking for a file on disk.  Just make
sure that the inline code uses cr/lf pairs (in C, \r\n) to denote the
end of a line, just like a file would.

