An open API service indexing awesome lists of open source software.

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

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
```