Skip to content

WeRockStar/Get-Programming-with-Haskell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Releases

No releases published

Packages

No packages published