1 2 3 4 5
use std::fs; pub fn get_text(path : &str) -> String { fs::read_to_string(path).unwrap_or_default() }