Vibeset

WebAssembly

WebAssembly (Wasm) is a low-level binary format that runs in the browser at near-native speed. You don't usually write it by hand: languages like Rust, C++ or Go compile to Wasm to bring heavy tasks (games, editing, AI) to the browser.

Para qué se usa

A favor

En contra

Ecosistema

Ejemplo

(module
  (func (export "main") (result i32)
    i32.const 42))