Macro console_web::println

source ·
macro_rules! println {
    ($($args:tt)*) => { ... };
}
Expand description

This macro works the same as the println! from the standard library.

Examples

console_web::println!("The number 42 is {}", 42);