c-repl/src/include/analysis.h

10 lines
153 B
C
Raw Normal View History

2023-12-08 09:40:14 +01:00
#ifndef ANALYSIS_H
#define ANALYSIS_H
2023-12-08 10:12:23 +01:00
#include "types.h"
#include "memory.h"
using namespace std;
2023-12-08 09:40:14 +01:00
2023-12-08 10:12:23 +01:00
void analyze(Node &ast, Memory<int> &memory);
2023-12-08 09:40:14 +01:00
#endif