import-go

command
v1.0.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 28, 2023 License: Apache-2.0 Imports: 8 Imported by: 0

README

Import go func example

This example shows how to define, import and call a Go-defined function from a WebAssembly-defined function.

If the current year is 2022, and we give the argument 2000, age-calculator.go should output 22.

$ go run age-calculator.go 2000
println >> 21
log_i32 >> 21

Background

WebAssembly has neither a mechanism to get the current year, nor one to print to the console, so we define these in Go. Similar to Go, WebAssembly functions are namespaced, into modules instead of packages. Just like Go, only exported functions can be imported into another module. What you'll learn in age-calculator.go, is how to export functions using HostModuleBuilder and how a WebAssembly module defined in its text format imports it. This only uses the text format for demonstration purposes, to show you what's going on. It is likely, you will use another language to compile a Wasm (WebAssembly Module) binary, such as TinyGo. Regardless of how wasm is produced, the export/import mechanics are the same!

Where next?

The following examples continue the path of learning about importing and exporting functions with wazero:

WebAssembly System Interface (WASI)

This uses an ad-hoc Go-defined function to print to the console. There is an emerging specification to standardize system calls (similar to Go's x/sys) called WebAssembly System Interface (WASI). While this is not yet a W3C standard, wazero includes a wasi package.

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL