webster 0.2.0

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

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

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