macro_rules! info { () => { ... }; ($arg:expr) => { ... }; ($($arg:tt)*) => { ... }; }
Expand description
Info message.
Write an info message while in a prompt session.
Can take either a fmt string like format!, a type that implements Display, or nothing.
§Examples
use may_clack::{info, intro, outro};
intro!("intro");
// do stuff
info!("info");
// do stuff
outro!();use may_clack::info;
// empty
info!();
// fmt string
info!("fmt {:?}", "string");
// impl Display
info!("text");
info!(4);