My solutions to exercises from the wizard book!
Go to file
symys 9d5cb2f7e5 More exercises complete, and runscheme.sh added to keep from having to always open a REPL. 2024-03-31 00:33:48 -05:00
chapter_1 More exercises complete, and runscheme.sh added to keep from having to always open a REPL. 2024-03-31 00:33:48 -05:00
readme.md Updated readme and removed file artifact from previous organization 2024-03-03 13:04:51 -06:00

readme.md

These are my solutions to exercises from Structure and Interpretation of Computer Programs (AKA "The Wizard Book"). They should be organized as .scm files with accompanying .txt files (or vice-versa, whatever) to pair the verbal component of the exercises with Scheme code that can be run conveniently.

I'm using the MIT Scheme interpreter to code and check my work, nvim (with treesitter) to write it out, and git (hosted on git.cyberia.club) to share my work. The MIT scheme interpreter is installed on NixOS declaratively and on a permanent basis by adding mitscheme to env.systemPackages, e.g. (in configuration.nix)

env.systemPackages = with pkgs; [
    mitscheme
]

(plus whatever other packages you want in there, all separated by whitespace).