https://github.com/boblyx/selflearnlisp
Small exercises to learn Common Lisp
https://github.com/boblyx/selflearnlisp
Last synced: 9 months ago
JSON representation
Small exercises to learn Common Lisp
- Host: GitHub
- URL: https://github.com/boblyx/selflearnlisp
- Owner: boblyx
- Created: 2024-11-21T06:09:14.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-12-04T11:30:52.000Z (about 1 year ago)
- Last Synced: 2025-02-01T09:44:24.472Z (11 months ago)
- Language: Common Lisp
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# selflearnLisp
Self learning exercises to learn Common Lisp.
## Usage
1. Install `sbcl`.
```bash
sudo apt-get install sbcl
```
2. Install `Quicklisp` package manager.
```bash
curl -o /tmp/ql.lisp http://beta.quicklisp.org/quicklisp.lisp
sbcl --no-sysinit --no-userinit --load /tmp/ql.lisp \
--eval '(quicklisp-quickstart:install :path "~/.quicklisp")' \
--eval '(ql:add-to-init-file)' \
--quit
```
3. Run the examples in `src`.