added org mode file for sicp in programming_book_examples repo.
This commit is contained in:
parent
9890119fe5
commit
cf7ae4856c
1 changed files with 12 additions and 0 deletions
12
sicp/sicp.org
Normal file
12
sicp/sicp.org
Normal 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
|
Loading…
Add table
Reference in a new issue