We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ff944a commit 273a8acCopy full SHA for 273a8ac
Makefile
@@ -0,0 +1,2 @@
1
+init:
2
+ brew install sbcl rlwrap
README.md
@@ -1,2 +1,13 @@
# programming-algorithms-in-lisp
+
3
Writing Efficient Programs with Examples in ANSI Common Lisp
4
5
+## Getting Started
6
7
+``` sh
8
+make init
9
+```
10
11
+``` elisp
12
+(setq inferior-lisp-program "/usr/local/bin/sbcl")
13
src/03.lisp
@@ -0,0 +1 @@
+((lambda (x) (+ x x)) 2)
0 commit comments