Tag: haskell

Fibonacci Numbers

As I said in my last post, I will look at generating Fibonacci numbers in Haskell. I will look at a simple but slow algorithm followed by a much faster version to highlight the importance of algorithm design.

Read More »

First Steps in Haskell

Recently I have decided to teach myself the Haskell programming langauge. My first step was to grab a copy of the O’Reilly book on the langauge, which while slightly out of date, I can highly recommend. After digesting the earlier chapters, I was ready to write some simple programs. The first being the obligatory “Hello World!” program, which is incredibly simple.

Read More »