[][src]Macro bunt::println

macro_rules! println {
    ($format_str:literal $(, $arg:expr)* $(,)?) => { ... };
}

Writes formatted data with newline to stdout (with ColorChoice::Auto).

Like print!, but adds a newline (\n) at the end.

bunt::println!("{$cyan}foo {[bold]} bar{/$}", true);

See crate-level docs for more information.