this post was submitted on 06 Jun 2023
96 points (98.0% liked)

Programmer Humor

32042 readers
1375 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 

I have been troubleshooting this script for weeks and finally found it was trying to divide by zero.

you are viewing a single comment's thread
view the rest of the comments
[โ€“] elouboub@kbin.social 5 points 1 year ago (3 children)

Makes me think of devs who debug with print statements instead of a debugger and breakpoints.

[โ€“] lens_r@kbin.social 8 points 1 year ago

IMO there's a place for both. A print statement will reveal a flaw in the programmer's thinking regarding the control flow of the program and the state at that time. If a print statement gives something unexpected, you know exactly where to look in the debugger. If it gives you what you expected, it reveals the problem may be elsewhere

load more comments (2 replies)