We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc9c097 commit ebb677cCopy full SHA for ebb677c
graalwasm/graalwasm-embed-c-code-guide/README.md
@@ -185,7 +185,7 @@ public class App {
185
You can also call Java functions from WebAssembly by importing them into your WebAssembly modules.
186
For this example, let's try to move the logic which computes the next element of the output (by doing an integer increment) to a Java function.
187
188
-Here is what we will need to add to our C file to declare an external function whose implementation we will provide in Java:
+We need to add the following to our C file to declare an external function whose implementation we will provide in Java:
189
190
```c
191
extern int javaInc(int number)
0 commit comments