Macro cmd_lib_macros::cmd_info[][src]

cmd_info!() { /* proc-macro */ }

Print info messages

e.g:

use cmd_lib::cmd_info;
let name = "rust";
cmd_info!("hello, $name");

format should be string literals, and variable interpolation is supported.