Macro dprintln

Source
macro_rules! dprintln {
    ($($arg:tt)*) => { ... };
}
Expand description

Prints output to the Windows console using ConsoleWriter.

§Example

dprintln!("Hello, world!");
dprintln!("Value: {}", 42);