WebAssembly

tags:  web, webassembly

Use RustRust
Basic Concepts

Creating an Array

let arr: Vec<String> = vec!["example".to_string()];


Array of objects


pub struct Book {
pub id: u16,
pub title: String,
}

...

let arr: Vec<Sto...
as base language.

TBD

References