23 lines
491 B
C++
23 lines
491 B
C++
#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
|