main.rs 344 B

123456789101112131415
  1. async fn say_world() {
  2. println!("world");
  3. }
  4. #[tokio::main(flavor = "current_thread")]
  5. async fn main() {
  6. // Calling `say_world()` does not execute the body of `say_world()`.
  7. let op = say_world();
  8. // This println! comes first
  9. println!("hello");
  10. // Calling `.await` on `op` starts executing `say_world`.
  11. op.await;
  12. }