Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jagot/alisp

A Lisp implementation for fun
https://github.com/jagot/alisp

Last synced: 6 days ago
JSON representation

A Lisp implementation for fun

Awesome Lists containing this project

README

        

alisp
=====

A Lisp implementation for fun

Ideas
-----
* FFI for loading C-linkage shared libraries

References
----------
* [How many primitives does it take to build a LISP machine? Ten, seven or five?](http://stackoverflow.com/questions/3482389/how-many-primitives-does-it-take-to-build-a-lisp-machine-ten-seven-or-five)
* [The most minimal LISP?](http://stackoverflow.com/questions/4589366/the-most-minimal-lisp)
* [Can you implement any pure LISP function using the ten primitives? (ie no type predicates)](http://stackoverflow.com/questions/3467317/can-you-implement-any-pure-lisp-function-using-the-ten-primitives-ie-no-type-p)
* [Y combinator](https://en.wikipedia.org/wiki/Fixed-point_combinator)
* [Given the following LISP eval function - what is required to add defmacro?](http://stackoverflow.com/questions/3683388/given-the-following-lisp-eval-function-what-is-required-to-add-defmacro)
* [Really minimum lisp](http://stackoverflow.com/questions/2731611/really-minimum-lisp)
* [What is the "minimal" set of primitives needed for a Lisp interpreter?](http://www.cs.cmu.edu/Groups/AI/html/faqs/lang/lisp/part1/faq-doc-6.html)
* [Set Theory and Lisp](http://blog.isaachodes.io/p/set-theory-and-lisp/)
* [Church encoding](https://en.wikipedia.org/wiki/Church_encoding)