macro_rules! println_success {
($($arg:tt)*) => { ... };
}Expand description
Prints a success message with green background and white text.
Supports format string syntax like format! macro:
println_success!("Hello")- Simple stringprintln_success!("Hello {}", name)- Positional argumentsprintln_success!("Hello {name}")- Named arguments (Rust 1.58+)