10 lines
175 B
Rust
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!");
|
|
} |