I want to capture and forward the standard output of Lua scripts and forward it to a console internal to the application, does Rlua support this functionality in any way currently ?
There's nothing rlua-specific, but at the Lua level you can replace the global print function (and if needed io.write) to send output elsewhere before running the script.
I want to capture and forward the standard output of Lua scripts and forward it to a console internal to the application, does Rlua support this functionality in any way currently ?