[][src]Macro cute_async::matsu

macro_rules! matsu {
    ($exp:expr) => { ... };
}

Await future in async context.

Because .await is retarded.

#![feature(async_await)]

async fn do_async() {
}

async fn my_main() {
    cute_async::matsu!(do_async());
}