From cf7ae4856caa483348d0912845bafdb8baf39588 Mon Sep 17 00:00:00 2001 From: booboy Date: Fri, 20 Apr 2018 00:38:29 -0500 Subject: [PATCH] added org mode file for sicp in programming_book_examples repo. --- sicp/sicp.org | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 sicp/sicp.org diff --git a/sicp/sicp.org b/sicp/sicp.org new file mode 100644 index 0000000..509a17c --- /dev/null +++ b/sicp/sicp.org @@ -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