wasker 0.2.2

Wasm compiler for running Wasm on your favorite kernel
Documentation
1
2
3
4
5
6
7
8
9
10
11
# Example application in Go

## Build Wasm binary from Go
Go >= 1.21 supports WASI preview 1.

```
cd Wasker/example/go

# Build
GOARCH=wasm GOOS=wasip1 go build -o go.wasm main.go 
```