- ⭐ Favorites:
- Currently learning:
- Calculus & Linear Algebra
- Automatae & Formal Languages
- Unreal, C++ & Game Development
- Interests:
- Computer Graphics & Shaders
- Game/ Graphics/ Software Design
- Procedural Generation & AI
- I 💙 Godot
- Enthusiast since 2016~
#include <iostream>
int main(void)
{
#if defined(__unix__) || defined(__linux__)
std::cout << "\033[32m" "Hello World!" "\033[m\n";
#else
std::cout << "Hello World!" << std::endl;
#endif
}