Skip to content
This repository was archived by the owner on May 3, 2022. It is now read-only.

updated the path (WebAssembly with Rust doc) #161

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/WebAssembly/Rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,14 @@ cargo build --target=wasm32-wasi
3. The wasm file created in release folder of wasi32

```bash
file target/wasm32-wasi/release/demo.wasm
file target/wasm32-wasi/debug/demo.wasm
```

4. Wasm runtime

```bash

wasmtime target/wasm32-wasi/release/demo.wasm
wasmtime target/wasm32-wasi/debug/demo.wasm
```
![Rust Screenshot3](/img/tutorial/rustWasm.png?raw=true)

Expand Down
2 changes: 1 addition & 1 deletion docs/WebAssembly/Zig.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pub fn main() !void {
try stdout.print("is: {d} \n ", .{fibonacci(x)} );
}
```
## Compiling Go code
## Compiling Zig code

1. Compile using `zig`

Expand Down