https://github.com/gablemathias/sicp
Walkthrough Structure and Interpretation of Computer Programs, with practice and exercises done!
https://github.com/gablemathias/sicp
Last synced: 5 months ago
JSON representation
Walkthrough Structure and Interpretation of Computer Programs, with practice and exercises done!
- Host: GitHub
- URL: https://github.com/gablemathias/sicp
- Owner: gablemathias
- Created: 2022-12-26T14:26:47.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-11T08:40:17.000Z (over 3 years ago)
- Last Synced: 2025-10-19T00:15:43.971Z (9 months ago)
- Language: Scheme
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SICP Studying
Hello! I've made this repository to push the exercises, tests and studies from book:
Structure and Interpretation of Computer Programs
# How to run Scheme on Linux or Mac
1. $ mkdir scheme
2. $ cd scheme && touch simplyscm
3. copy the code from here https://people.eecs.berkeley.edu/~bh/ssch27/appendix-simply.html into the file created in the previous step
4. install docker
5. $ sudo docker pull stklos/stklos:latest
6. $ sudo docker run -v $(pwd):/home -it stklos/stklos:latest
7. stklos> (load "simplyscm")
In case you are wondering how to get out of the container you run:
,quit
Repeat steps 5 to 7 as needed.
Run:
$ docker container prune
Once in a while just to get rid of those accumulating stopped containers
Credits: A student that watched the video lectures. Thank you!