howto 0.3.0

instant coding answers via the command line
Documentation

howto

Instant coding answers with Google and StackOverflow. Inspired by gleitz/howdoi.

Usage

# use futures::prelude::*;
# async move {
let answers = howto::howto("file io rust").await;

answers.for_each(|answer| {
println!("Answer from {}\n{}", answer.link, answer.instruction);
future::ready(())
}).await;
# };