Skip to content

Instantly share code, notes, and snippets.

@edcote
Last active July 9, 2019 04:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edcote/a52ff0351cd3ec538baf5a7d43a9b495 to your computer and use it in GitHub Desktop.
Save edcote/a52ff0351cd3ec538baf5a7d43a9b495 to your computer and use it in GitHub Desktop.
Haskell Notes

Haskell Notes

Installation

# install Haskell compiler
sudo apt install -y ghc
# manual instally to /usr/local/bin
curl -sSL https://get.haskellstack.org/ | sh

Create Project

cd < path to projects dir >
stack new hello-world
cd hello-world
stack setup
stack ghci
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment