↪️ Calling guest (exported) functions
A Wasm module can export entities, like functions, memories, globals and tables. This example illustrates how to call exported functions.
Last updated
Was this helpful?
A Wasm module can export entities, like functions, memories, globals and tables. This example illustrates how to call exported functions.
Last updated
Was this helpful?
In this example we'll see how to use exported functions.
Exported function are the entities you will probably use the most: they will be your entrypoint to calling Wasm module logic.
Exported function come in two flavors:
Dynamic functions;
Native functions.
We'll cover both flavors in this example.
First we are going to want to initialize a new project. To do this we can navigate to our project folder, or create one. In this example, we will create a new project. Lets create it and navigate to it:
We have to modify Cargo.toml
to add the Wasmer dependencies as shown below:
Now that we have everything set up, let's go ahead and try it out!
We'll start by fetching the guest function and see how to call it using the dynamic flavor. Our Wasm module exports a sum
function, let's get and call it:
Easy right?
Both example look nice but it does not seem like we are using standard functions. In fact, we are calling an external entity. With the native flavor we can get something that feels more like we are using functions as if they were provided by the host directly.
Let's have a look at this.
Let's continue with our previous sum
function and see how we can make interacting with it better. To do so, we'll be using the native flavor. With this flavor, passing arguments and getting result will feel more natural.
To use this flavor, we have the choice of fetching the function again or transforming the one we already have into a native function:
We now have everything we need to run the Wasm module, let's do it!
You should be able to run it using the cargo run
command. The output should look like this:
The final code for this example can be found on .
Please take a look at the .
If you want to run the examples from the Wasmer codebase directly, you can also do:
If you want to run the examples from the Wasmer codebase directly, you can also do:
If you want to run the examples from the Wasmer codebase directly, you can also do:
If you want to run the examples from the Wasmer codebase directly, you can also do: