Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 688 Bytes

quickstart.md

File metadata and controls

31 lines (20 loc) · 688 Bytes

Haskell Quickstart

Installing

To begin

stack new defshef-blackjack
cd defshef-blackjack
stack setup

Running

We'll use the interactive prompt to interact easily with the application

stack ghci

You'll then be greeted with a prompt.

You can now run functions that you've defined in defshef-blackjack/src/Lib.hs.

To pull in the latest code from disk use :reload.