#include <iostream>
#include <vector>
#include <string>
class GameDeveloper {
public:
std::string name;
std::string role;
std::vector<std::string> programmingLanguages;
std::vector<std::string> languagesSpoken;
GameDeveloper()
: name("Alexandre Pereira"),
role("Game Developer"),
programmingLanguages({"C++", "C#", "JavaScript"}),
languagesSpoken({"pt_BR", "en_US"}) {}
void sayHi() const {
std::cout << "Thanks for dropping by, hope you find some of my work interesting." << std::endl;
}
};
int main() {
GameDeveloper me;
me.sayHi();
return 0;
}
🐑
Open to work
Gamer since 1996 |
Game developer since 2024 |
Unreal C++ Developer
-
Black sheep 1337
- Salvador, Bahia, Brazil
-
15:06
(UTC -03:00) - https://blacksheepstudios.netlify.app/
- in/dev-alexandre-pereira
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.


