formatted readme

This commit is contained in:
2025-12-04 02:07:25 +01:00
parent b8c86e212e
commit 30f00bc08b
2 changed files with 10 additions and 9 deletions

View File

@@ -15,7 +15,7 @@ fn main() {
.truncate(true) // Clear the file if it already exists
.open("README.md").expect("Cannot open or create file");
file.write_all(b"# Advent of Code 2025\n```").expect("Cannot write to file");
file.write_all(b"# Advent of Code 2025\n```bash\n").expect("Cannot write to file");
let exercises: Vec<(&str, fn () -> u64)> = vec![
("day01:A", part01a::solve),