Go
You must have on your machine before installing TinyGo. Go v1.17 or above is recommended. For Ubuntu or other Debian-based Linux systems on x86 processors, you could use the following command line to install TinyGo. For other platforms, please refer to TinyGo docs.
Next, run the following command line to check out if the installation is successful.
tinygo version 0.21.0 linux/amd64 (using go version go1.16.7 and LLVM version 11.0.0)
The simple Go app has a main()
function to print a message to the console. The source code in main.go
file is as follows.
package main
func main() {
}
Next, compile the main.go
program to WebAssembly using TinyGo.
You will see a file named hello.wasm
in the same directory. This is a WebAssembly bytecode file.
You can run it with the .
$ wasmedge hello.wasm
Hello TinyGo from WasmEdge!
func main(){
}
//export fibArray
func fibArray(n int32) int32{
arr := make([]int32, n)
for i := int32(0); i < n; i++ {
switch {
arr[i] = i
default:
arr[i] = arr[i-1] + arr[i-2]
}
}
}
Next, compile the main.go
program to WebAssembly using TinyGo.
You will see a file named fib.wasm
in the same directory. This is a WebAssembly bytecode file.
You can run it with the WasmEdge CLI in its --reactor
mode. The command line arguments that follow the wasm
file are the function name and its call parameters.
$ wasmedge --reactor fib.wasm fibArray 10
34
$ wasmedgec hello.wasm hello.wasm
$ wasmedge hello.wasm
Hello TinyGo from WasmEdge!
For the --reactor
mode,