Print an informational message to stdout. The message is formatted in cyan with an info prefix. # Arguments `message` - The message to print # Example ```rust,ignore print_info("Processing 42 files..."); // Output: ℹ Processing 42 files... ```
(message: &str)
| 137 | /// // Output: ℹ Processing 42 files... |
| 138 | /// ``` |
| 139 | pub fn print_info(message: &str) { |
| 140 | println!("{} {}", info("ℹ"), info(message)); |
| 141 | } |
| 142 | |
| 143 | /// Print a hint/suggestion message to stdout. |
| 144 | /// |
no outgoing calls
no test coverage detected