Posted by: jorgedbucaran on: January 24, 2008
Haskell can be both interpreted or compiled, generally you’ll want to use an interpreter for testing but you’ll also need a compiler if you want to make a standalone executable.
There are several implementations of Haskell available and if you want more general information you can read it on Wikipedia. I will work with GHC which [...]