Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
purposes

I'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/)