2026-03-25 11:30:12 -06:00
|
|
|
#ifndef EVALUATOR_H
|
|
|
|
|
#define EVALUATOR_H
|
|
|
|
|
|
|
|
|
|
#include "lexer.h"
|
2026-04-13 06:40:31 -06:00
|
|
|
#include "arena.h"
|
2026-03-25 11:30:12 -06:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
2026-03-25 12:25:15 -06:00
|
|
|
int64_t evaluate(ASTNode *tree);
|
2026-03-25 11:30:12 -06:00
|
|
|
|
|
|
|
|
#endif // !EVALUATOR_H
|