Macro info

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

§Examples

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