1 2 3 4 5
use wasm_bindgen::prelude::JsValue; pub fn log(str: &str) { web_sys::console::log_1(&JsValue::from_str(str)); }