This commit is contained in:
2026-01-13 22:52:55 +08:00
commit 211a837468
18 changed files with 2831 additions and 0 deletions

23
library.h Normal file
View 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