https://github.com/eginez/simplelisp
yet another toy lisp implementation
https://github.com/eginez/simplelisp
Last synced: 3 months ago
JSON representation
yet another toy lisp implementation
- Host: GitHub
- URL: https://github.com/eginez/simplelisp
- Owner: eginez
- Created: 2017-11-11T19:58:42.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-27T04:14:36.000Z (over 7 years ago)
- Last Synced: 2025-01-23T06:45:39.808Z (5 months ago)
- Language: Kotlin
- Homepage:
- Size: 56.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Lisp
Simple lisp is a toy lisp implementation that supports the bare minimum lisp constructs. Here is a simple program written in simpleplisp
```
(define sum (fn (x)
(+ x 10)))(sum 10)
```
The above function evaluates to 20Simple lisp is built with Kotlin
## Building
```
gradle build test
```