Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jagot/alisp
- Owner: jagot
- License: gpl-3.0
- Created: 2014-08-24T08:31:36.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-08-07T11:24:01.000Z (over 7 years ago)
- Last Synced: 2024-11-15T18:35:04.536Z (2 months ago)
- Language: C
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
alisp
=====A Lisp implementation for fun
Ideas
-----
* FFI for loading C-linkage shared librariesReferences
----------
* [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)