https://github.com/danielholmes/cis194-fall-16
Exercises for CIS194 (fall 16 edition)
https://github.com/danielholmes/cis194-fall-16
Last synced: 11 months ago
JSON representation
Exercises for CIS194 (fall 16 edition)
- Host: GitHub
- URL: https://github.com/danielholmes/cis194-fall-16
- Owner: danielholmes
- Created: 2017-02-14T22:53:18.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-04T23:19:33.000Z (about 9 years ago)
- Last Synced: 2025-02-10T01:41:21.316Z (over 1 year ago)
- Language: Haskell
- Homepage:
- Size: 179 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CIS194 Exercises and examples
Exercises from [CIS194 (Fall 16)](http://www.seas.upenn.edu/~cis194/fall16/).
## Dependencies
- [Stack](https://www.haskellstack.org/)
## Setup
Each week is managed separately. Before using that week's code run:
```
cd 01-intro
stack setup
```
## Running exercises
Within a week directory after setup:
```
stack build --pedantic
stack exec w01-exe
```
or via the REPL:
```
stack repl
> greenLightMain
> redLightMain
```
If you've changed the source files, then run `:r` in the REPL to get access to updated functions
## Running tests
Within a week directory after setup:
```
stack test
```