Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lross2k/practice-in-clisp
Simple implementations made in Common Lisp to practice different concepts
https://github.com/lross2k/practice-in-clisp
common-lisp lisp
Last synced: about 2 months ago
JSON representation
Simple implementations made in Common Lisp to practice different concepts
- Host: GitHub
- URL: https://github.com/lross2k/practice-in-clisp
- Owner: lross2k
- License: gpl-3.0
- Created: 2022-08-31T20:47:15.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-10-11T19:29:52.000Z (over 2 years ago)
- Last Synced: 2024-10-25T22:32:35.773Z (3 months ago)
- Topics: common-lisp, lisp
- Language: Common Lisp
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Practice in Common Lisp
I have never used Lisp, so here I'll be throwing all the coding tests and examples done for learning
purposesI'm using SBCL in Debian Linux, no idea of how to run this on other platforms or interpreters
```txt
$ sbcl --script filename.lisp
```# Done
## Basic language usage
- Hello World
- Basic functions
- Variables
- Lists
- List managing functions
- Macros
- While loop
- Classes
- Generic functions and methods# Sources of information used
- [Lisp Lang org](https://lisp-lang.org/learn/)
- [Practical Common Lisp book](https://gigamonkeys.com/book/)