This document shows how to embed the wasmtime and run a simple wasm code.
Let's create a simple WebAssembly file with a single exported function that returns an integer:
(;; wat2wasm hello.wat -o $WASM_FILES/hello.wasm ;;)
(module
(func (export "answer") (result i32)