aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorkartofen <mladenovnasko0@gmail.com>2023-08-14 21:20:39 +0300
committerkartofen <mladenovnasko0@gmail.com>2023-08-14 21:20:39 +0300
commita7bb8ace49f5725e0f92336ab5af28b4c8900aff (patch)
tree5d00d7a5d159e9702b46c23542fffc09e591c271 /README.md
parentf83187a830deff27ce0cdd4c175ffe2785461685 (diff)
parser done
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..b844f7d
--- /dev/null
+++ b/README.md
@@ -0,0 +1,18 @@
+### Lispy
+
+A simple lisp/scheme interpreter
+
+### TODO
+
+* Support Quasiquote (and comma)
+* Support macros
+* Add FFI (Foreing Function Interface) (Maybe codegen whole c std lib)
+
+Remember:
+* Need special procedures (procedures that don't evaluate their arguments like lambda, quote, if/cond)
+
+### Development Notes
+
+* Figure out how to deal with lexer and repl
+ * when the tokens aren
+ *