https://github.com/mnikander/interpreter
An simple interpreter for symbolic-expressions which runs in your browser
https://github.com/mnikander/interpreter
Last synced: over 1 year ago
JSON representation
An simple interpreter for symbolic-expressions which runs in your browser
- Host: GitHub
- URL: https://github.com/mnikander/interpreter
- Owner: mnikander
- License: mit
- Created: 2025-04-03T16:38:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-06T19:28:40.000Z (over 1 year ago)
- Last Synced: 2025-04-06T20:28:14.909Z (over 1 year ago)
- Language: TypeScript
- Size: 59.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Symbolic Interpreter (work in progress)
A simple interpreter for symbolic expressions which runs in the browser.
You can compute `1 + 2` with:
```lisp
> (+ 1 2)
3
```
and `1 + (2 * 3)` with:
```lisp
> (+ 1 (* 2 3))
7
```