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
cancel!();
// fmt string
cancel!("fmt {:?}", "string");
// impl Display
cancel!("text");
cancel!(4);