https://github.com/sritchie/sicp
Exercises and solutions for Structure and Interpretation of Computer Programs.
https://github.com/sritchie/sicp
scheme sicp sicp-exercises
Last synced: 2 months ago
JSON representation
Exercises and solutions for Structure and Interpretation of Computer Programs.
- Host: GitHub
- URL: https://github.com/sritchie/sicp
- Owner: sritchie
- License: apache-2.0
- Created: 2020-05-21T18:12:29.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-21T21:10:06.000Z (almost 5 years ago)
- Last Synced: 2025-01-19T12:42:28.851Z (4 months ago)
- Topics: scheme, sicp, sicp-exercises
- Language: Racket
- Size: 23.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## SICP
This joins the other half-finished repositories for this tough book that you can find on GitHub.
## How do I run this code?
- Install [Dr Racket](https://racket-lang.org/)
- Get the [SICP Language module installed](https://docs.racket-lang.org/sicp-manual/Installation.html)
- If you're on emacs, you may want to install `racket-mode`.For a nice experience, add this to your emacs config:
```scheme
(add-hook 'racket-mode-hook #'turn-on-smartparens-strict-mode)(add-hook 'racket-repl-mode-hook #'turn-on-smartparens-strict-mode)
(global-prettify-symbols-mode 1)
(add-hook 'racket-mode-hook
(lambda ()
"Beautify Lambdas"
(setq prettify-symbols-alist '(("lambda" . 955)))))(add-hook 'racket-repl-mode-hook
(lambda ()
"Beautify Lambdas"
(setq prettify-symbols-alist '(("lambda" . 955)))))
```## Any questions?
Write me, or create an issue!