tokio_wasi/
tokio-wasi.rs

1fn main() {
2    let name = std::env::var("NAME").unwrap();
3    println!("Hello, world! My name is {}", name);
4    std::thread::sleep(std::time::Duration::from_secs(1));
5    println!("Goodbye from {}", name);
6}