https://github.com/timwspence/lisp
A small Lisp implementation
https://github.com/timwspence/lisp
Last synced: about 1 year ago
JSON representation
A small Lisp implementation
- Host: GitHub
- URL: https://github.com/timwspence/lisp
- Owner: TimWSpence
- Created: 2017-11-13T15:58:33.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-11-23T17:09:21.000Z (over 8 years ago)
- Last Synced: 2025-01-30T08:23:53.360Z (over 1 year 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?