forked from xxq250/Nasal-Interpreter
the beginning of a new interpreter
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#ifndef __NASAL_H__
|
||||
#define __NASAL_H__
|
||||
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
#include <cstring>
|
||||
#include <cstdlib>
|
||||
#include <ctime>
|
||||
#include <cmath>
|
||||
/* if thread is used, don't forget to add -std=c++11 or higher standard before executing */
|
||||
// #include <thread>
|
||||
#include <list>
|
||||
#include <stack>
|
||||
#include <queue>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
||||
#include "nasal_enum.h"
|
||||
#include "nasal_resource.h"
|
||||
#include "nasal_lexer.h"
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user