added org mode file for sicp in programming_book_examples repo.

This commit is contained in:
booboy 2018-04-20 00:38:29 -05:00
parent 9890119fe5
commit cf7ae4856c

12
sicp/sicp.org Normal file
View file

@ -0,0 +1,12 @@
* 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
# Scratch evaluation buffer
#+BEGIN_SRC scheme :tangle yes :noweb yes :results value
(define (square x) ( * x x))
(square 10)
#+END_SRC
#+RESULTS:
: 100