the best way to write code is: write code that you can delete without any effects on the rest of the program. and keep all related code as close as possible together in the source code.
Also keep mutations as far up the call stack as possible. use pure functions whereever possible.
No comments yet.