macro_rules! outro { () => { ... }; ($arg:expr) => { ... }; ($($arg:tt)*) => { ... }; }
Setup outro
Write a message to start a prompt session.
Can take either a fmt string like format!, a type that implements Display, or nothing.
format!
Display
use may_clack::outro; // empty outro!(); // fmt string outro!("fmt {:?}", "string"); // impl Display outro!("text"); outro!(4);