| ▲ | raverbashing 5 hours ago | ||||||||||||||||||||||
True but some still wants me to understand what a monofunctor is or something that sounds like a disease to do things like print to screen or get a random number I feel that is the biggest barrier to their adoption nowadays (and also silly things like requiring ;; at the end of the line) Pure functions are a good theoretical exercise but they can't exist in practice. | |||||||||||||||||||||||
| ▲ | jacquesm 4 hours ago | parent | next [-] | ||||||||||||||||||||||
> Pure functions are a good theoretical exercise but they can't exist in practice. Well, they can. But not all the way up to the top level of your program. But the longer you can hold off from your functions having side effects the more predictable and stable your codebase will be, with as an added benefit fewer bugs and less chance of runtime issues. | |||||||||||||||||||||||
| |||||||||||||||||||||||
| ▲ | roryc89 4 hours ago | parent | prev [-] | ||||||||||||||||||||||
In most FP languages it is simple to print to screen and get a random number. Pure functions often exist in practice and are useful for preventing many bugs. Sure, they may not be suitable for some situations but they can prevent a lot of foot guns. Here's a Haskell example with all of the above: | |||||||||||||||||||||||