Email or username:

Password:

Forgot your password?
Niki Tonsky

Is println a debugger?

Anonymous poll

Poll

Yes
113
81.9%
No
25
18.1%
138 people voted.
Voting ended 27 Oct 2023 at 20:59.
1 comment
Григорий Клюшников

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)

Go Up