Playing with Haskell
Contents
While I was reading Seven Languages in Seven Weeks 1, I wanted to test Haskell. Just for fun.
Running Haskell
To run Haskell one solution is to use a Docker image. It avoids the burden of installing it on your machine.
To make it even easier, a good old Makefile
can help.
|
Once defined, to run GHCi
(stands for Glasgow Haskell Compiler Interactive), just run the make
.
|
Playing with it
Now you can start playing.
|
Next steps
My advice is to read the great book Learn You a Haskell for Great Good! 2. Even better, it can be read online for free.