Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

I meant compiling and executing V from C++, calling V functions from C++, and C++ function from V.


V produces .c files, which are then compiled to .o files, like C.

Interfacing v code into a C++ app, is like interfacing with any other C library, with the addition, that you may have to write the C headers yourself (or you can cut/paste them from the produced C file).

If you want to call a C++ function from V, you have to export it from the C++ side, like you would do for a C app: extern "C" { int your_function(int x) } ... and then call it from the V side like any other C function. (https://vlang.io/docs#calling_c)




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: