(no title)
compootr | 1 month ago
while you should know this for anything you're proficient in, I usually reach for printf since it's usually quicker than messing with a debugger :)
compootr | 1 month ago
while you should know this for anything you're proficient in, I usually reach for printf since it's usually quicker than messing with a debugger :)
locknitpicker|1 month ago
Nothing is easier than setting a breakpoint in a line of code and running the app.
When a breakpoint is hit, you also have access to local variables and their state. Some debuggers even allow us to change variable values at runtime.
Using printf is effective, but far from being the best way to achieve anything.
soulofmischief|1 month ago