wordcheck 0.1.0

A simple English word validator
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# wordcheck


A simple English word validator.

## Usage

```rust
use wordcheck::CheckWord;

let validator = CheckWord::new();
assert!(validator.is_valid("hello")); // true
assert!(!validator.is_valid("asdfgh")); // false

let words = validator.get_words();
println!("Dictionary contains {} words", words.len());
```