mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-07 18:11:21 +00:00
17 lines
241 B
Rust
17 lines
241 B
Rust
|
#![feature(proc_macro)]
|
||
|
|
||
|
extern crate wasm_bindgen;
|
||
|
|
||
|
use wasm_bindgen::prelude::*;
|
||
|
|
||
|
#[wasm_bindgen]
|
||
|
extern {
|
||
|
fn alert(s: &str);
|
||
|
}
|
||
|
|
||
|
#[wasm_bindgen]
|
||
|
#[no_mangle]
|
||
|
pub extern fn greet(name: &str) {
|
||
|
alert(&format!("Hello, {}!", name));
|
||
|
}
|