[go: up one dir, main page]

runtime 0.3.0-alpha.8

[deprecated] Empowering everyone to build asynchronous software.
Documentation
1
2
3
4
5
6
7
8
async fn say_hi() {
    println!("Hello world! 🤖");
}

#[runtime::main]
async fn main() {
    say_hi().await;
}