Alligator is a small crate for getting the output value from a future
```rust
async fn hello_world() -> &'static str { "Hello World" }
fn main() { println!("{}", later!{ hello_world() }); } ```