Extemely broken, but all the code up to 7.3 should be here, now the refactoring begins to make it C code and not Java code.

This commit is contained in:
2022-03-07 19:22:39 +00:00
parent d39d20aa6e
commit 2d587e75b1
4 changed files with 112 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
#ifndef INTERPRETER_H
#define INTERPRETER_H
#include "expr.h"
#include "token.h"
const void* VisitLiteralExpression(Expr*);
void* VisitGroupingExpression(Expr*);
#endif