Archived
1
0
Fork 0
This repository has been archived on 2023-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
SLOTH/src/sloth.hpp
2018-09-26 19:28:55 -04:00

12 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