alligator 0.1.0

Alligator is for getting the output value from a future
alligator-0.1.0 doesn't have any documentation.

alligator 🐊

Alligator is a small crate for getting the output value from a future

#![feature(async_await)]
#![feature(futures_api)]
#[macro_use] extern crate alligator;

async fn hello_world() -> &'static str {
  "Hello World"
}

fn main() {
  println!("{}", later!{ hello_world() });
}