https://github.com/cpcloud/eopl
https://github.com/cpcloud/eopl
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/cpcloud/eopl
- Owner: cpcloud
- Created: 2014-05-22T14:08:25.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-06-14T02:00:41.000Z (about 12 years ago)
- Last Synced: 2025-02-08T07:44:07.364Z (over 1 year ago)
- Language: Python
- Size: 195 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is a repository of the exercises for Essentials of Programming
Languages. Some are done in Python (where possible: it's hard to
inspect code in Python) and all are done in Racket.
All code has basic unit tests testing at least the cases presented in
the book, sometimes more.
To the run the tests in Python you need to install ``nose`` and
simple run ``nosetests`` from directory.
For racket, you'll need to run
```sh
raco setup rackunit
```
then to run the tests do
```sh
racket test_eopl.rkt
```