|
You are here |
nagekar.com | ||
| | | | |
mmhaskell.com
|
|
| | | | | [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
|
|
| | | | | [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
|
|
| | | | | (this post is part of a series on Object Oriented Programming in Haskell - see tutorials for a table of contents) | |
| | | | |
andreabergia.com
|
|
| | | 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. | ||