Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 632 Bytes

dev-install.md

File metadata and controls

41 lines (28 loc) · 632 Bytes

Install Dependencies

Install cabal by installing GHCUP or another method described on the Haskell Website.

cabal update;

Also install the following VSCode/Codium/CodeOSS extensions:

hoovercj.haskell-linter
justusadam.language-haskell
haskell.haskell

Run project

cabal run glados -- file.scm;

or

make ARGS="file.scm"

Running the tests

In order to see coloured output and no coverage when running the tests, please run the tests with one of the following commands:

cabal run test
make test

Return to the main page