Macro warning

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

§Examples

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