4 ms·
Right! I'll also just mention that this Wasm module isn't sent to the clients and run in the browser. It runs server-side. And for a bit of context, the hello
by jagger27 5y ago
Right! I'll also just mention that this Wasm module isn't sent to the clients and run in the browser. It runs server-side.
And for a bit of context, the hello world example below produces a 409K binary straight out of rustc on my machine. It does much less than our example, which also includes some shim libraries not shown in lib.rs.
fn main() {
println!("Hello World!");
}