Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/fabiokleis/land-of-lisp
- Owner: Fabiokleis
- Created: 2024-01-21T03:17:20.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-01-30T01:48:19.000Z (9 months ago)
- Last Synced: 2024-01-30T02:45:11.184Z (9 months ago)
- Topics: common-lisp, land-of-lisp, lisp
- Language: Common Lisp
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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")
```