12 lines
176 B
Rust
12 lines
176 B
Rust
|
use wasm_bindgen::prelude::*;
|
||
|
|
||
|
#[wasm_bindgen]
|
||
|
extern "C" {
|
||
|
pub fn alert(s: &str);
|
||
|
}
|
||
|
|
||
|
#[wasm_bindgen]
|
||
|
pub fn greet(name: &str) {
|
||
|
alert(&format!("Hello, {}!", name));
|
||
|
}
|