the beginning of a new interpreter

This commit is contained in:
Valk Richard Li
2020-05-31 10:19:26 -07:00
committed by GitHub
parent 24bfbd8f0e
commit 5bba655088
16 changed files with 771 additions and 0 deletions
+22
View File
@@ -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