14 lines
525 B
Markdown
14 lines
525 B
Markdown
# sicp_examples
|
|
|
|
This repository will store the example exercises from the book Structures and Interpretations of Computer Programs as I work through while reading the book. https://web.mit.edu/6.001/6.037/sicp.pdf
|
|
|
|
# Usage:
|
|
You want to ensure you have racket installed to run the examples in these excercises with the sicp language pack installed.
|
|
```
|
|
# Install SICP language packet through the package manager
|
|
raco pkg install sicp
|
|
|
|
# Ensure you can run the test example (output should be 10)
|
|
racket test_racket.rkt
|
|
10
|
|
```
|