cw_writeln

Macro cw_writeln 

Source
macro_rules! cw_writeln {
    ($writer:expr, $($arg:tt)*) => { ... };
}
Expand description

Write formatted text with newline to a CodeWriter (like std::writeln!)

§Example

writeln!(w, "let x = {}", 42)?;