class Leaos : public Programmer { public: const std::array<Language> ProgramingLanguages = { "C", "C++", "C#", "Python", "Java" }; const std::array<Language> OtherLanguages = { "HTML", "CSS", "Markdown", "Matlab", "Lua" }; const std::array<Database> Databases = { "MySQL", "SQLite", "SQLServer", "Redis" }; const std::array<Editor> Editors = { "Visual Stuido", "VS Code", "Source Insights", "Notepad++", "NeoVim" }; const std::array<Platform> Platforms = { "Windows", "GNU/Linux" }; const std::array<Tool> OtherTools = { "Git", "CMake", "Typora", "Obsidian" } };
|