tokio::join! lets you run multiple futures concurrently, and returns the output of all of them. For JavaScript developers: Promise.all is a good equivalent.| oida.dev | TypeScript, Rust
This is a long section. Here are some anchors to jump to the respective part:| oida.dev | TypeScript, Rust
Let’s get started with our first Tokio app. Create a new project using Cargo and add the tokio dependency either to your Cargo.toml file or directly on the command line.| oida.dev | TypeScript, Rust