• 0 Posts
  • 1 Comment
Joined 2 years ago
cake
Cake day: July 3rd, 2023

help-circle
  • As a senior engineer writing Haskell professionally, this just isn’t really true. We just push side effects to the boundaries of the system and do as much logic and computation in pure functions.

    It’s basically just about minimizing external touch points and making your code easier to test and reason about. Which, incidentally, is also good design in non-FP languages. FP programmers are just generally more principled about it.