Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/manelli/plis

Dysfunctional Lisp Interpreter in Ruby
https://github.com/manelli/plis

interpreter lisp ruby

Last synced: 7 days ago
JSON representation

Dysfunctional Lisp Interpreter in Ruby

Awesome Lists containing this project

README

        

# Dysfunctional Lisp Interpreter

## http://norvig.com/lispy.html

### Usage
Run `./plis`
```
plis> (define r 10)
plis> (* pi (* r r))
314.159265359
plis> (if (> (* 11 11) 120) (* 7 6) oops)
42
```