this post was submitted on 02 Oct 2025
71 points (93.8% liked)

Programming

22951 readers
434 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] namingthingsiseasy@programming.dev 0 points 2 days ago (1 children)

Sure, but as with all things, it can depend on a lot of factors. All code needs some degree of testing, though one could certainly argue that Python needs more than Java and Java needs more than Rust/Haskell/etc. So you could argue that the productivity gain of using Python is offset by the productivity loss of extra testing. It's still hard to say which one wins out in the end.

[โ€“] Feyd@programming.dev 6 points 2 days ago* (last edited 2 days ago)

People underestimate the cost of testing.

  1. It has to actually happen to be effective and is something that can be dropped under time pressure where something built into the language cannot.
  2. Test code is also code that is not guaranteed to be correct, and also incurs it's own maintenance tolls

Removing the need for entire classes of tests cases is a huge win