Hello World!

𝓖𝓪𝓶𝓮 𝓓𝓮𝓿 𝓲𝓼 𝓶𝔂 𝓹𝓪𝓼𝓼𝓲𝓸𝓷

  • 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~

Tools



Top Languages

#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
}