453 B
453 B
Strucutre and Interpretation of Computer Programs
workflow: gnu info file with sicp: [[https://github.com/webframp/sicp-info][github_link]
we will use org mode and babel to evaluate the mit-scheme exmaples from the book as we work through it
Chapter 1
(define (square x) ( * x x))
(square 10)
100