howto 0.4.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 mut answers = howto::howto("file io rust").await;

while let Some(answer) = answers.next().await {
println!("Answer from {}\n{}", answer.link, answer.instruction);
}
# };