advent of code '24. trying rust again, let's see how far i get.
install rust, etc. - check out the rust book – it'll explain everything nicely. here's some commands to get started. the input files are not checked in, get them from the advent of code website.
cargo new dec13
: create a new package (»member«) in the workspace. i'll use this for every single day.cargo test
: run all the tests.cargo run
: first navigate in the right package folder, otherwiseinput.txt
won't be found.