DEV Community

Discussion on: Debugging - you’re doing it wrong. 10 techniques to find a bug in your code

Collapse
 
juancarlospaco profile image
Juan Carlos

If you really want to remove Bugs from your code:

  • Learn & use Design By Contract (Hoare Logic), TDD is poors man DbC.
  • Make variables Immutable, as much as possible, if your lang allow.