Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timwspence/lisp
A small Lisp implementation
https://github.com/timwspence/lisp
Last synced: 20 days ago
JSON representation
A small Lisp implementation
- Host: GitHub
- URL: https://github.com/timwspence/lisp
- Owner: TimWSpence
- Created: 2017-11-13T15:58:33.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-23T17:09:21.000Z (about 7 years ago)
- Last Synced: 2024-10-15T02:11:44.256Z (2 months ago)
- Language: C
- Homepage:
- Size: 89.8 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lisp
This started out as my implementation of [Build your own Lisp](http://www.buildyourownlisp.com/). Many thanks to @orangeduck for what is a superb tutorial and something
I would recommend every developer do at some point in their lives.I have plans to extend it beyond the scope of the tutorial, as per the TODO in this repo.
Thus far, I have added the following:
- a Makefile so I don't have to remember/keep in my shell history the magic incantation to compile it :)
- basic file-based I/O via builtins slurp/spit
- string functions: seq, str, char, int, str_includes?