1 2 3 4 5 6 7 8 9
use smol::Task; #[smol_potat::main] async fn main() { Task::spawn(async { println!("Hello, world!"); }) .await; }