Is println a debugger?
Anonymous poll
Poll
Yes
113
81.9%
No
138 people voted. 25
18.1%
Voting ended 27 Oct 2023 at 20:59.
It's a debugging technique. A valid one in many cases, but especially:
- when your code needs to run in real time and will break if you pause it in a debugger
- when you're running repetitive operations and using a debugger would be tedious
- when you're developing for a platform for which there's no debugger (embedded/bare metal)