An open API service indexing awesome lists of open source software.

https://github.com/ayys/hello

Hello World in wasm
https://github.com/ayys/hello

Last synced: about 2 months ago
JSON representation

Hello World in wasm

Awesome Lists containing this project

README

        

# hello-world
Hello World in wasm

# running
```bash
wasmer run hello-world

# or run your local version
# cargo wasix build --release
wasmer run .
```

# Building

```bash
# install wasmer
curl https://get.wasmer.io -sSfL | sh

# install cargo-wasix
cargo install cargo-wasix

# build the release version
cargo wasix build --release

# run it with wasmer
wasmer run .
```