Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fabiokleis/land-of-lisp

learning lisp by following Land of Lisp book. http://landoflisp.com
https://github.com/fabiokleis/land-of-lisp

common-lisp land-of-lisp lisp

Last synced: about 9 hours ago
JSON representation

learning lisp by following Land of Lisp book. http://landoflisp.com

Awesome Lists containing this project

README

        

# Land of Lisp
learning lisp by following Land of Lisp book. http://landoflisp.com

## compile
to compile and load a .lisp file, you could open a `clisp` REPL and run:
```shell
(compile-file "your-code.lisp")
(load "your-code")
```