cli_send

Macro cli_send 

Source
macro_rules! cli_send {
    ($text:expr) => { ... };
    ($text:expr, $( $arg:expr ),*) => { ... };
}
Expand description

Outputs text without a newline.

Similar to print!, but with word wrapping. Supports format-style arguments.

ยงExample

use falcon_cli::cli_send;

cli_send!("Loading");
cli_send!("...");  // Continues on same line