use crate::saying_files::get_files; pub fn read_all_sayings() -> Vec { get_files() .iter() .map(|n| n.lines().map(|l| l.to_string())) .flatten() .collect() }