https://github.com/menduz/old-tiny-clojure
Tiny clojure interpreter
https://github.com/menduz/old-tiny-clojure
Last synced: about 2 months ago
JSON representation
Tiny clojure interpreter
- Host: GitHub
- URL: https://github.com/menduz/old-tiny-clojure
- Owner: menduz
- License: apache-2.0
- Created: 2019-08-26T01:01:23.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-30T18:29:30.000Z (over 2 years ago)
- Last Synced: 2025-02-12T18:59:41.973Z (4 months ago)
- Language: TypeScript
- Size: 363 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tiny Clojure
This is a tiny Clojure interpreter. The motivation behind this project is to have a lightweight subset of clojure to run sandboxed scripts in a web game I'm creating.
It is also a good candidate to solve many scripting-related problems I had in the past.
## Why Cloure?
It is a good LISP that proved itself in many ways.
## Why a lisp?
I recently had that showerthought where you realize that if Star Trek will ever exist, everything in the Star Fleet will have to be somehow a LISP.
# Methodology
I'll try to do as few things as I can in the host language (TypeScript). Trying to implement as much logic as I can in Clojure directly.
In the future I'd like to use this same project to compile Clojure to WebAssembly.