update readme
This commit is contained in:
parent
7c6b5c6c79
commit
b1ee2b7a22
2 changed files with 7 additions and 3 deletions
|
@ -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
|
||||||
|
|
|
@ -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 )"]
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue