Rust-wasm 0.1.0

A sample project with wasm-pack
Documentation
1
2
3
4
5
6
extern crate web_sys;

#[macro_export]
macro_rules! log {
    ($($t:tt)*) => (web_sys::console::log_1(&format!($($t)*).into()))
}