macro_rules! println { ($($args:tt)*) => { ... }; }
This macro works the same as the println! from the standard library.
println!
console_web::println!("The number 42 is {}", 42);