We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Hi, all
I wanted to call a C function as below in wasm
void hello(char *name) { printf("Hello, %s\n", name); }
My question is how can I invoke the hello function with wasm-c-api?
I would appreciate it if you can answer my question.