Macro no_stdout::dprintln[][src]

macro_rules! dprintln {
    () => { ... };
    ($s : expr) => { ... };
    ($s : expr, $($tt : tt) *) => { ... };
    (@ newline) => { ... };
}
Expand description

Macro for printing to the configured stdout, with a newline.

This method prints only if the dprint feature enabled, which is useful for debugging purposes.