resume-generator 0.1.0

does what it says. quick way to generate a latex resume
Documentation
1
2
3
4
5
6
7
crate::ix!();

pub fn write_content(content: &str, path: &str) -> Result<(),std::io::Error> {
    let mut file = File::create(&path).expect("Could not create file");
    file.write_all(content.as_bytes()).expect("Could not write to file");
    Ok(())
}