this post was submitted on 17 Jan 2025
368 points (99.2% liked)

Programmer Humor

34884 readers
167 users here now

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

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] -1 points 2 months ago (3 children)

So catching errors and doing nothing? That exists in every language except maybe BASIC?

[–] [email protected] 6 points 2 months ago

Catching individual errors is fine. Having all errors be ignored by default is weird.

[–] [email protected] 3 points 2 months ago

Very different. This means default ignore all errors and continue to the next line. You’d have to explicitly catch every line in most(all?) other languages.