Re: JNA stdout and the REPL
I imagine you'll have to call the Java System.out.println from C. I forget how exactly to do this. Java streams and ANSI/POSIX C streams aren't compatible. The C ones usually rely on having an OS file descriptor, and Java allows making new kinds by implementing interfaces. There's not a general
Re: JNA stdout and the REPL
here is an example of > package foo; > >