just briefly, the problem is you are attempting to do two different things:
1) capture stdio data. I posted code for this in response to one of your
earlier requests
2) implement a REPL (read-eval-print-loop). you have implemented the
read-eval parts. the basic repl uses Base.showerror to display errors and
display("text/plain", ans) to print the last result returned from each eval
alternatively, you could create a pipe to julia, and reuse the basic repl,
but it really depends on your desired result
On Fri, Jun 27, 2014 at 2:46 PM, Laszlo Hars <[email protected]> wrote:
> ...anyone? I'd appreciate ideas, even if they are untested.
>