quine golf: optimise font further, 65x65 grid, 4208B

This commit is contained in:
Crispy 2024-08-12 22:32:38 +02:00
parent 024ebfabe9
commit a2a9dcf292
4 changed files with 11 additions and 10 deletions

View file

@ -153,6 +153,7 @@ fn golfed() {
for (_i, c) in out.iter().enumerate() {
out_string += &format!("{c},");
}
out_string.pop();
out_string += "};\n";
let mut file = File::create("out_golfed.h").unwrap();
file.write_all(out_string.as_bytes()).unwrap();