macro_rules! dprint {
($s:expr) => { ... };
($s:expr, $($tt:tt)*) => { ... };
}
Expand description
Macro for printing to the configured stdout, without a newline.
This method prints only if the dprint
feature enabled, which is useful
for debugging purposes.