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!"); } }