Macro notice

Source
macro_rules! notice {
    ($($arg:tt)+) => { ... };
    () => { ... };
}
Expand description

§Examples

use fvm_std::notice;
notice!("hello");
notice!("hello {}", "notice");
notice!();