-
Notifications
You must be signed in to change notification settings - Fork 2
alandipert/shave
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
shave This is the beginnings of a LISP interpreter. It's kind of full of garbage right now, because I got impatient and started copy-pasting. The lexer is handwritten, so yeah, it rules. The generated AST is a big linked list, which is evaluated in the eval step. The AST is made up of 'Token' structs, which have type and property enums used by the eval routines. My end goal here is to make the cleanest, smallest, and simplest implementation of LISP that would handle the recursive computation of a factorial: (defun factorial (n) (if (<= n 1) 1 (* n (factorial (- n 1))))) There's a ways to go; namely cleanup and implementing defun. compile: $ make use: $ ./shave shave. > (if (> 3 2) (/ 9 (+ 3 2))) list: if: list: >: atom: 3 atom: 2 list: /: atom: 9 list: +: atom: 3 atom: 2 atom: 1.8
About
a wannabe lisp interpreter
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published