group levels into chapters

This commit is contained in:
Crispy 2024-12-22 16:39:40 +01:00
parent ff69b967dd
commit 42dfe4fac7
22 changed files with 236 additions and 210 deletions

View file

@ -1,6 +1,9 @@
use std::{fs::File, io::Write};
fn main(){
fn main() {
let version = concat!("v", env!("CARGO_PKG_VERSION"));
File::create("version.txt").unwrap().write_all(version.as_bytes()).unwrap();
}
File::create("version.txt")
.unwrap()
.write_all(version.as_bytes())
.unwrap();
}