10 lines
171 B
C
10 lines
171 B
C
#ifndef INTERPRETER_H
|
|
#define INTERPRETER_H
|
|
|
|
#include "expr.h"
|
|
#include "token.h"
|
|
|
|
const void* VisitLiteralExpression(Expr*);
|
|
void* VisitGroupingExpression(Expr*);
|
|
|
|
#endif |