From f0bacd15821d5ecda51786a7bc67002a2663a6aa Mon Sep 17 00:00:00 2001 From: Felix Martin Date: Mon, 12 Oct 2020 12:35:00 -0400 Subject: [PATCH] Remove todos from readme and add script to execute scripts --- README.md | 22 ++-------------------- run.sh | 3 +++ 2 files changed, 5 insertions(+), 20 deletions(-) create mode 100755 run.sh diff --git a/README.md b/README.md index 1e7ef70..3dc4429 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # SICP These are my solutions to the CS classic [Structure and Interpretation of -Computer Programs](https://mitpress.mit.edu/sites/default/files/sicp/index.html)). +Computer Programs](https://mitpress.mit.edu/sites/default/files/sicp/index.html). I have looked up the answer for some exercises on the [Scheme Community Wiki](http://community.schemewiki.org/?SICP-Solutions). Such exercise have a marked in their respective script. @@ -10,23 +10,5 @@ You can use the Scheme implementation by the MIT to run these scripts. In Arch, execute `pacman -S mit-scheme` to install it. Then run the scripts via `mit-scheme --quiet < script.scm`. - -# Todos - -- [ ] Finish exercises from the first chapter -- [ ] Check code of chapter 1 into repository -- [ ] Write summary for chapter 1 -- [ ] Write instructions for how to run code -- [ ] Check code of chapter 2 into repository -- [ ] Write summary for chapter 2 -- [ ] Check code of chapter 3 into repository -- [ ] Finish chapter 3 -- [ ] Write summary for chapter 3 -- [ ] Finish chapter 4 -- [ ] Write summary for chapter 4 -- [ ] Finish chapter 5 -- [ ] Write summary for chapter 5 -- [X] Setup Scheme environment -- [X] Document setup of environment - +**This is currently (2020/10/12) work in progress.** diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..e20060c --- /dev/null +++ b/run.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +mit-scheme --quiet < $1