WeRockStar / Get-Programming-with-Haskell

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Source Code from Get Programming with Haskell Book

Visual Studio Code plugin

  • Haskero

Install Stack

  1. brew update
  2. brew install stack

Create new project and Build

	stack new {project name} simple --resolver=lts-7.8
	lst-7.8 does is it mean compile version you need to use
  1. Create project -> stack new hello-world simple --resolver=lts-7.8
  2. Build -> stack build
  3. Set up stack or setup GHC -> stack setup
  4. Execute program -> stack exec hello-world
  5. Run program -> stack runghc Main.hs
  6. Interactive for GHC -> stack ghci
  7. Exit interactive mode -> :quit

Read More

Haskell platform

About


Languages

Language:Haskell 100.0%