use std::fs; pub fn get_lines(file_name: String) -> Vec { fs::read_to_string(file_name) .expect("Error reading some file") .lines() .map(|x| x.to_string()) .collect() }