diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/js/README.md | 2 | ||||
-rw-r--r-- | lisp/js/l.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/js/README.md b/lisp/js/README.md index e49585e..9060998 100644 --- a/lisp/js/README.md +++ b/lisp/js/README.md @@ -1,6 +1,6 @@ # a little lisp -Most of this lifed from <https://github.com/maryrosecook/littlelisp>, <https://maryrosecook.com/blog/post/little-lisp-interpreter>. +Most of this lifted from <https://github.com/maryrosecook/littlelisp>, <https://maryrosecook.com/blog/post/little-lisp-interpreter>. To run interactively: diff --git a/lisp/js/l.html b/lisp/js/l.html index f1e27b2..8927607 100644 --- a/lisp/js/l.html +++ b/lisp/js/l.html @@ -30,7 +30,7 @@ (concat s t)) (print - (bird "tweet " "twoot")) + (bird "hello " "world")) )`; |