- Favorite languages: Python & C
- Favorite topics: Software Engineering
- Researching about:
- GitFlow: Trunk-based vs. Branch-based
- Currently learning:
- Linear Algebra
- Algorithms Design
- 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
}