1 pub const SHERLOCK: &'static [u8] = include_bytes!("../data/sherlock.txt"); 2 3 pub const RANDOM: &'static [u8] = include_bytes!("../data/random.txt"); 4 pub const RANDOM10X: &'static [u8] = include_bytes!("../data/random10x.txt"); 5 6 pub const WORDS_100_RAW: &'static str = include_str!("../data/words-100"); 7 pub const WORDS_5000_RAW: &'static str = include_str!("../data/words-5000"); 8 pub const WORDS_15000_RAW: &'static str = include_str!("../data/words-15000"); 9 words_100() -> Vec<&'static str>10pub fn words_100() -> Vec<&'static str> { 11 WORDS_100_RAW.lines().collect() 12 } 13 words_5000() -> Vec<&'static str>14pub fn words_5000() -> Vec<&'static str> { 15 WORDS_5000_RAW.lines().collect() 16 } 17 words_15000() -> Vec<&'static str>18pub fn words_15000() -> Vec<&'static str> { 19 WORDS_15000_RAW.lines().collect() 20 } 21