/cis194

Haskell CIS 194 exercises

Primary LanguageHaskellMIT LicenseMIT

CIS 194 Homework

Learning haskell, one newbie mistake at a time.

# Update to latest version of Cabal.
cabal update
cabal install cabal-install

# Initialize a sandbox and install the package's dependencies.
make install

# Configure & build the package.
make configure
make build

# Test package.
make test

# Benchmark package.
make bench

# Run executable.
make run

# Start REPL.
make repl

# Generate documentation.
make haddock

# Analyze coverage.
make hpc