Some people seem to want a function

   char *Elk_Eval(char *expr);

that receives as an argument a string containing a Scheme expression
and returns the result of evaluating the string.

Elk_Eval() stores its result in a static buffer of fixed size; this
can be improved easily by passing a buffer and a length as additional
arguments.
