1
2
3
4
5
use std::{fs::File, io::Write};

pub(crate) fn write_newline(file: &mut File) {
    file.write_all(b"\n").unwrap();
}