2019-03-29 09:46:39 +01:00

7 lines
106 B
Rust

use wasm_bindgen::prelude::*;
#[wasm_bindgen]
pub fn hello() -> String {
String::from("Hello World")
}