Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/manelli/plis
- Owner: manelli
- Created: 2015-06-06T01:13:55.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-24T02:20:17.000Z (over 9 years ago)
- Last Synced: 2024-04-17T00:03:37.426Z (7 months ago)
- Topics: interpreter, lisp, ruby
- Language: Ruby
- Homepage:
- Size: 125 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```