mirror of
https://codeberg.org/ProgramSnail/lang.git
synced 2025-12-06 06:58:46 +00:00
17 lines
359 B
C++
17 lines
359 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace builtin {
|
|
|
|
const static std::string TUPLE_IDENTIFIER = "Tuple";
|
|
|
|
const static std::string VARIANT_IDENTIFIER = "Variant";
|
|
|
|
const static std::string ARRAY_IDENTIFIER = "Array";
|
|
|
|
const static std::string OPTIONAL_IDENTIFIER = "Optional";
|
|
|
|
const static std::string RESULT_IDENTIFIER = "Result";
|
|
|
|
} // namespace builtin
|