Fix syntax for building with TinyGo

This commit is contained in:
robo
2026-01-21 20:59:17 -03:00
committed by Ron Evans
parent 5d8e071bfb
commit f0256cab18
+1 -1
View File
@@ -63,7 +63,7 @@ tinygo build -buildmode=c-shared -o add.wasm -target=wasip1 add.go
You can also use the same syntax as Go 1.24+:
```shell
GOARCH=wasip1 GOOS=wasm tinygo build -buildmode=c-shared -o add.wasm add.go
GOOS=wasip1 GOARCH=wasm tinygo build -buildmode=c-shared -o add.wasm add.go
```
## Installation