Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skn0tt/numlisp
A naïve Lisp interpreter created for educational purposes only.
https://github.com/skn0tt/numlisp
Last synced: 13 days ago
JSON representation
A naïve Lisp interpreter created for educational purposes only.
- Host: GitHub
- URL: https://github.com/skn0tt/numlisp
- Owner: Skn0tt
- Created: 2020-02-24T15:04:34.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T20:29:19.000Z (11 months ago)
- Last Synced: 2024-10-06T04:03:09.270Z (about 1 month ago)
- Language: TypeScript
- Homepage: https://numlisp-slides.now.sh
- Size: 296 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# numLisp
![npm](https://img.shields.io/npm/v/numlisp?style=flat-square)
A naïve Lisp interpreter.
It only supports Lists and Numbers and doesn't support custom definitions.Usage:
```sh
> yarn global add numlisp> numlisp '(+ 10 (car (list 32 33 34)))'
42
```## Motivation
I've created this to find out how to build an interpreter - and it's surprisingly simple, really!
Try it out for yourself before you have a look at this one, it's a lot of fun.