macro_rules! notice { ($($arg:tt)+) => { ... }; () => { ... }; }
use fvm_std::notice; notice!("hello"); notice!("hello {}", "notice"); notice!();