Why debuggers are bad
Tuesday, April 21st, 2009Debuggers are useful
They make you run an application and inspect variables while you a running the real thing
They make you debug code and quickly find bugs
You set a breakpoint somewhere, you run your application, it stops where you want and let you inspect variables and more.
Debuggers are bad
They make you debug code instead of writing [...]