https://github.com/robertbcolton/lisp-interpreter
A simple LISP interpreter based on the Scheme dialect.
https://github.com/robertbcolton/lisp-interpreter
Last synced: about 2 months ago
JSON representation
A simple LISP interpreter based on the Scheme dialect.
- Host: GitHub
- URL: https://github.com/robertbcolton/lisp-interpreter
- Owner: RobertBColton
- License: gpl-3.0
- Created: 2016-10-14T19:17:00.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-13T19:02:15.000Z (almost 8 years ago)
- Last Synced: 2025-02-09T18:23:36.381Z (4 months ago)
- Language: Java
- Size: 17.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# About LISP Interpreter
This project is an adaptation of http://norvig.com/lispy.html written in Java. It is a minimalist LISP interpreter with Read-eval-print-loop that supports simple arithmetic calculations, lambda's, loops, lexical scoping, and conditional expressions. My sole intention was to learn to write my own programming language which I already have some experience with from personal projects. The project is licensed under the GPL v3 for the educational benefit of others.