1extern crate web_sys; 2 3#[macro_export] 4macro_rules! log { 5 ($($t:tt)*) => (web_sys::console::log_1(&format!($($t)*).into())) 6}