Added 'Wordlist' struct
I created a simple, tuple struct 'Wordlist' that contains a vector of strings. I implemented the following methods:
- new
- extend_from_file
- len
- is_empty
I generated two test cases for this struct which test all four methods. At this point, all tests pass.