hello i come from C# / C++. im trying to learn / setup rust but i ran into a problem whilst trying to debug.
If i press "run" everything works as expected, but if i change something in my code and then press debug; it just runs the older build (the one that "run" compiled) and ignore my code changes.
Also if i hit a breakpoint and change a variables value via the locals panel, it just disregards that and keeps using the old value defined in the code.
I was watching some rust tutorials and heard pretty much everything is immutable by default so i also tried changing my variable to mut to see if thatd allow me to change the value via the locals panel; but it didn't.
(im using rust-analyzer and CodeLLDB btw)
thanks.