- GHC compile
- Parsec library installed
ghc-pkg list
command to check whether you have installed the library.cabal install --global parsec
to install.
- I use Parsec library, it's so powerful that I highly recommend. You can reade real world haskell chapter 16 if you aren't farmilar with it.
- After you get the code, run command:
ghc -package parsec -o repl repl.hs
- If you are lazy, you can use
source run.sh
instead of compiling and link those source files.
- lisp-in-haskell is under the MIT license.