Explore >> Select a destination


You are here

www.parsonsmatt.org
| | www.williamyaoh.com
3.7 parsecs away

Travel
| | [AI summary] A technical tutorial guides readers through deriving the State monad in Haskell from first principles to handle input/output and mutable state using pure functions.
| | markkarpov.com
2.5 parsecs away

Travel
| | [AI summary] A technical blog post arguing against the use of Free Monads in Haskell programming due to issues with inspection, efficiency, and composability, proposing Type Classes and Final Tagless Encoding as superior alternatives.
| | blog.cofree.coffee
1.5 parsecs away

Travel
| | [AI summary] The blog post introduces Monad Transformers in functional programming, explaining their purpose, implementation, and applications in combining monadic effects.
| | sreekar.ch
16.9 parsecs away

Travel
| But first What is functional programming ? Functional programming is a programming paradigm in which most computation is treated as evaluation of functions. It emphasizes on expression evaluation instead of command execution. Wikipedia When did it all start ? In the 90s, there was a war between declarative programming and imperative programming. Declarative programming then represented by logic programming languages like Prolog and early functional languages like Erlang. And imperative languages were r...