fn main() { let rt = tokio::runtime::Runtime::new().unwrap(); rt.block_on(async { invoke().await }); } async fn invoke() { println!("Hello World!"); }