print_error

Function print_error 

Source
pub fn print_error(message: impl Display)
Expand description

Prints an error message to stderr with a red X prefix.

§Example

use bel7_cli::print_error;

print_error("Something went wrong");
// Output: ✗ Something went wrong (red X)