Earlier quoted context omitted.
async event loops in Rust are invoked explicitly by the programmer as well.
Are they always invoked explicitly? Or is it sometimes implicit?
fn main() {
tokio::runtime::Builder::new_multi_thread()
.enable_all()
.build()
.unwrap()
.block_on(async {
println!("Hello world");
})
}
[1]: https://docs.rs/tokio/latest/tokio/attr.main.html#using-the-...