init
This commit is contained in:
23
library.h
Normal file
23
library.h
Normal file
@@ -0,0 +1,23 @@
|
||||
#ifndef CAMELLYA_LIBRARY_H
|
||||
#define CAMELLYA_LIBRARY_H
|
||||
|
||||
// Camellya Scripting Language
|
||||
// A Lua-like scripting language with 0-based indexing,
|
||||
// distinct list/map types, and class support
|
||||
|
||||
#include "state.h"
|
||||
#include "value.h"
|
||||
#include "lexer.h"
|
||||
#include "parser.h"
|
||||
#include "interpreter.h"
|
||||
#include "ast.h"
|
||||
|
||||
namespace camellya {
|
||||
|
||||
// Version info
|
||||
constexpr const char* VERSION = "0.1.0";
|
||||
constexpr const char* VERSION_NAME = "Camellya";
|
||||
|
||||
} // namespace camellya
|
||||
|
||||
#endif // CAMELLYA_LIBRARY_H
|
||||
Reference in New Issue
Block a user