badwords 0.1.0

a crate that gives you a list of bad words
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::fs::File;
use std::io::prelude::*;

pub fn list() -> Vec<String> {
    let mut file = File::open("./words.txt").unwrap();
    let mut contents = String::new();
    file.read_to_string(&mut contents).unwrap();

    let words: Vec<String> = contents
        .split('\n')
        .map(|x| x.to_string())
        .collect();

    words
}