1# Using multi-value
2
3You can also browse this source code online and clone the wasmtime
4repository to run the example locally:
5
6* [Rust](https://github.com/bytecodealliance/wasmtime/blob/main/examples/multi.rs)
7* [C](https://github.com/bytecodealliance/wasmtime/blob/main/examples/multi.c)
8* [C++](https://github.com/bytecodealliance/wasmtime/blob/main/examples/multi.cc)
9
10This example shows off how to interact with a wasm module that uses multi-value
11exports and imports.
12
13## Wasm Source
14
15```wat
16{{#include ../examples/multi.wat}}
17```
18
19## Host Source
20
21<!-- langtabs-start -->
22
23```rust
24{{#include ../examples/multi.rs}}
25```
26
27```c
28{{#include ../examples/multi.c}}
29```
30
31```cpp
32{{#include ../examples/multi.cc}}
33```
34
35<!-- langtabs-end -->
36