Macro matsu

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

Await future in async context.

Because .await is retarded.

async fn do_async() {
}

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