Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chouffe/hlisp
Lisp Interpreter in Haskell
https://github.com/chouffe/hlisp
haskell interpreter lisp
Last synced: 16 days ago
JSON representation
Lisp Interpreter in Haskell
- Host: GitHub
- URL: https://github.com/chouffe/hlisp
- Owner: Chouffe
- License: bsd-3-clause
- Created: 2016-04-11T22:35:57.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-19T00:36:59.000Z (almost 9 years ago)
- Last Synced: 2024-11-19T19:07:25.691Z (3 months ago)
- Topics: haskell, interpreter, lisp
- Language: Haskell
- Size: 2.23 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## TODO
* Write standard library
* Rewrite cond in terms of if (with the macro system)
* Rewrite and in terms of if (with the macro system)
* Rewrite or in terms of if (with the macro system)
* Parser should parse floats
* Improve parsing errors
* Add more quickchecks for evaluation rules
* self hosted lisp (implement eval)
* Multi variadic functions
* Use HashSet instead of Set
* Use HashMap Strict instead of HashMap
* Add a macro system
* Build a better Repl