webster 0.3.0

An offline version of webster's dictionary
Documentation
1
2
3
4
5
6
7
fn main() {
    let word = "silence";

    let definition = webster::dictionary(word).unwrap();

    println!("{} definition: {}", word, definition);
}