mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-07-22 02:48:48 +08:00
18 lines
315 B
C++
18 lines
315 B
C++
#ifndef __NASAL_H__
|
|
#define __NASAL_H__
|
|
|
|
#include <iostream>
|
|
#include <cstring>
|
|
#include "nasal_list.h"
|
|
#include "nasal_func.h"
|
|
#include "nasal_hash.h"
|
|
|
|
#include "nasal_list.cpp"
|
|
#include "nasal_hash.cpp"
|
|
|
|
#include "nasal_var_stack.h"
|
|
#include "nasal_func_stack.h"
|
|
#include "nasal_lexer.h"
|
|
|
|
#endif
|