A repository to learn the functional programming language Haskell.
- A text editor such as Sublime, Atom etc.
- GHC - Glasgow Haskell Compiler
- Create a new file
filename.hs
(.hs extension) - Open GHC via terminal, type
ghci
in the terminal. - Run the following command
:load filename.hs
- Run your modules in the ghc compiler
- If any changes made type
:reload