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

https://github.com/nikvolf/wasm-hello-world


https://github.com/nikvolf/wasm-hello-world

Last synced: 8 months ago
JSON representation

Awesome Lists containing this project

README

          

# wasm-hello-world

it's just returns "hello world" whenver called

```rust
#[no_mangle]
pub unsafe extern "C" fn call() {
ext::ret(b"Hello world");
}
```

To build, run

```
cargo install pwasm-utils --force
./build.sh
```