cli_sendln

Macro cli_sendln 

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

Outputs text with a newline.

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

ยงExample

use falcon_cli::cli_sendln;

cli_sendln!("Hello, world!");
cli_sendln!("User: {}", "Alice");