word_generator 0.1.0

Utilities for generating random words that souds similar to a choosen language
1
2
3
4
5
6
7
8
//! This module contains a list of lists of word of every word of a
//! language. See the Licences section of the main module for more information
//! about the licence of each lists

/// Every word of the french language with one word per line
pub const fn fr_txt() -> &'static [u8] {
    include_bytes!("FR.txt")
}