Saladsamurai
- 3,009
- 7
AlephZero said:An IDE doesn't debug your code for you.
You debug code by thinking. and playing with an IDE is often a distraction from that.
Of course you need a debugger to tell you the basic information like where your code crashed. But 99% of the time you can get all the information you need from a core dump and a stack trace, wthout the pretty graphics.
I AlphaZero!
So let's say for a second that I want to get into programming without an IDE. So I would need to learn about these things that you mentioned: core dump, stack trace and probably other things as well. Are these things that are generated by the 'debugger' (e.g. GDB)?