about summary refs log tree commit diff
path: root/users/kranzes/wasm-hello-world/src/lib.rs
use wasm_bindgen::prelude::*;

#[wasm_bindgen]
extern "C" {
    fn alert(s: &str);
}

#[wasm_bindgen]
pub fn hello_world() {
    alert("Hello World!");
}