Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 460 Bytes

HACKING.md

File metadata and controls

46 lines (32 loc) · 460 Bytes

Language Pi

To build the program:

stack build

To run the program after build:

stack exec pi

To enter the REPL:

stack repl

Testing

Build:

stack build pi:test:pi-tests

GHCi

stack build pi:test:pi-tests

Adding dependencies

Append to dependencies at package.yaml.

dependencies:
- base >= 4.7 && < 5
- mtl
- ...
- <insert new dependency here>

pi.cabal NO TOUCHY!