Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 631 Bytes

README.md

File metadata and controls

13 lines (7 loc) · 631 Bytes

Structure and Interpretation of Computer Programs

A collection of code snippets in LISP based on the MIT OpenCourseWare on Structures and Interpretations of Computer Programs.

Watch the course here

Setup Used

  • Initially, I used the Common Lisp dialect and interpreter but encountered a lot of issues when I reached higher-order procedures because of the differences of the syntax.

  • I switched to Scheme and used the Chicken compiler since the original book and videos were using Scheme.

  • To run a Scheme file, use csi -s <filename.scm>