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