Macro tokio_print::aprint[][src]

macro_rules! aprint {
    () => { ... };
    ($fmt:expr) => { ... };
    ($fmt:expr, $($arg:tt)*) => { ... };
}

Async version of print!

Example

#[macro_use]
extern crate tokio_print;

#[tokio::main]
async fn main() {
    aprintln!("Hello World!"); //Hello World!
}

How to use

same to println!