10 lines
139 B
C
10 lines
139 B
C
#ifndef EVALUATOR_H
|
|
#define EVALUATOR_H
|
|
|
|
#include "lexer.h"
|
|
#include <stdint.h>
|
|
|
|
uint64_t evaluate(ASTNode *tree);
|
|
|
|
#endif // !EVALUATOR_H
|