Need an output object

Hello,

I developed a small script that I compiled into an executable, everything works except the output.
Indeed, in my script, the return value is an object.
When I run my executable, it turns my object into a string.
How can I force the object out? is it possible ?

Thank you.

Regards,

Thomas.

It’s not possible to return an object from an executable. It will always be a string because it’s just writing to stdout.

thanks for your return.