ulisp-zero
BuildYourOwnLisp
Our great sponsors
ulisp-zero | BuildYourOwnLisp | |
---|---|---|
1 | 5 | |
46 | 2,628 | |
- | - | |
10.0 | 0.0 | |
almost 4 years ago | 8 months ago | |
Arduino | HTML | |
- | GNU General Public License v3.0 or later |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
ulisp-zero
-
Lisp in 99 lines of C and how to write one yourself [pdf]
Since its name is TinyLisp, I'd like to mention uLisp.
Lisp for microcontrollers - Arduino, Adafruit M0/M4, Micro:bit, ESP8266/32, RISC-V, and Teensy 4.x boards
In particular, its smallest variant (~800 LoC).
> uLisp Zero is a pared-down version of uLisp, capable of running in 8 Kbytes of program memory with 1 Kbyte of RAM
https://github.com/technoblogy/ulisp-zero/blob/master/uLispZ...
BuildYourOwnLisp
-
Looking for beginner resources on writing a Lisp from scratch
Build your own Lisp is cool but offloads the language grammar and the parsing to the author's mpc library, this is already way overkill for what I'd like to do.
-
Repost from LinkedIn. I found it quite hilarious
Lisps are also a good language if you want to know how languages work. They are very easy to make an interpreter for. There are good tutorials for that at https://github.com/kanaka/mal and https://www.buildyourownlisp.com/.
-
Lisp in 99 lines of C and how to write one yourself [pdf]
Anyone have any input on:
https://www.buildyourownlisp.com/
It's been in my bookmarks for a long time but I've never really had time to really start it. The "who is this for" page say:
"This book is for anyone wanting to learn C, or who has once wondered how to build their own programming language.".
Well, I'm fairly competent in C (but not great) but would like to get a glimpse of what it's like to build my own language. Is it worth the time?
- People seem to fear regex, so I made a puzzle game to help teach it through fighting goblins
What are some alternatives?
ComposableRegex - Build out composable regular expressions from simple sub blocks in a BNF type syntax. Check http://composableregex.apphb.com/ for a demo
single_cream - single file scheme interpreter with tail call optimization