macro_rules! log { ($($t:tt)*) => { ... }; }
Prints out the given string regardless of build target.
If build target is wasm32, this macro calls web_sys::console::log_1. Otherwise println is called.
wasm32
web_sys::console::log_1
println