smol-macros 0.1.1

Macros for setting up a smol runtime
Documentation
1
2
3
4
5
6
7
8
9
//! Example of using the `main` macro.

use smol_macros::main;

main! {
    async fn main() {
        println!("hello world!");
    }
}