1 2 3 4 5 6 7
use pasts::Executor; fn main() { Executor::default().block_on(async { println!("Hello from a future!"); }); }