13 lines
259 B
C++
13 lines
259 B
C++
|
#ifndef SLOTH_H
|
||
|
#define SLOTH_H
|
||
|
|
||
|
#include "constants.hpp"
|
||
|
#include "operations/node.hpp"
|
||
|
#include "variables/value.hpp"
|
||
|
#include "variables/variable.hpp"
|
||
|
#include "variables/environment.hpp"
|
||
|
#include "parser/parser.hpp"
|
||
|
#include "parser/parser.tab.h"
|
||
|
|
||
|
#endif
|