Back To The Future

#include <future>
#include <iostream>
 
int main()
{
  auto future = std::async([] { return "Future"; });
  std::cout << "Back To The " << future.get() << std::endl;
  return 0;
}
Vote up this code0