update readme

This commit is contained in:
jjanzen 2025-03-23 10:44:22 -05:00
parent 7c6b5c6c79
commit b1ee2b7a22
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,8 @@
# Lisp Interpreter # Lisp Interpreter
Currently working on lexing Lisp, but this'll be more interesting later I hope. ## Implemented
- Lexer
- Parser
## To Do
- Actually run lisp code

View file

@ -42,5 +42,4 @@ recognizeAST' (x:xs) | x == TokRPar = (xs, [ASTErr "Unexpected ')'"])
recognizeAST :: [Token] -> [ASTNode] recognizeAST :: [Token] -> [ASTNode]
recognizeAST xs = case recognizeAST' xs of recognizeAST xs = case recognizeAST' xs of
([], ys) -> ys (_, ys) -> ys
(_, ys) -> ys ++ [ASTErr "Unexpected )"]