Macro may_clack::outro

source ·
macro_rules! outro {
    () => { ... };
    ($arg:expr) => { ... };
    ($($arg:tt)*) => { ... };
}
Expand description

Setup outro

Write a message to start a prompt session.

Can take either a fmt string like format!, a type that implements std::fmt::Display, or nothing.

§Examples

use may_clack::outro;

// empty
outro!();
// fmt string
outro!("fmt {:?}", "string");
// impl Display
outro!("text");
outro!(4);