println

Macro println 

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

Print formatted text with Rich markup to stdout (with newline).

This macro is a drop-in replacement for std::println! that adds Rich markup support for colors, styles, and formatting.

ยงExample

use fast_rich::println;

println!("[bold green]Success![/] All tests passed.");
println!("Player {} scored [yellow]{}[/] points", "Alice", 100);
println!();  // Empty line