Files
2022-03-19 23:45:47 +08:00

10 lines
175 B
Rust

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