4

I'm asking for your help, once again, because I couldn't find any similar problem online.
I've written this neat thingy here, in Go
https://github.com/thosebeans/wento
And i try to integrate the wren-interpreter with it (is written in C).
All compiles and works, but I can't print to Stdout from the C-Code.
Any of you know what could cause this?

Comments
  • 2
    Maybe your go code locks stdout. Then you c code is unable to lock it for writing and therefore either fails or does nothing depending on how this error gets handled.
Add Comment