Explore >> Select a destination


You are here

nagekar.com
| | mmhaskell.com
1.2 parsecs away

Travel
| | [AI summary] This article compares Functional Programming and Object Oriented Programming paradigms, discussing their key differences, strengths, weaknesses, and how Haskell fits into the functional paradigm.
| | www.parsonsmatt.org
1.1 parsecs away

Travel
| | [AI summary] This article introduces a blog series aimed at programming by object-oriented developers who are learning the functional programming paradigm in Haskell.
| | www.parsonsmatt.org
1.3 parsecs away

Travel
| | (this post is part of a series on Object Oriented Programming in Haskell - see tutorials for a table of contents)
| | andreabergia.com
16.8 parsecs away

Travel
| Error handling is a fundamental aspect of programming. Unless you are writing hello world, you will need to handle errors in your code. In this post, I will discuss a bit the most common approaches used by various programming languages. Return error codes This is one of the most ancient strategies - if a function can fail, it can simply return an error code - often a negative number, or null.