howto 0.1.2

instant coding answers via the command line
Documentation

howto

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

Usage

let answers = howto::howto("file io rust");

for answer in answers.filter_map(Result::ok) {
    println!("Answer from {}\n{}", answer.link, answer.instruction);
}