Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thiagoianuch/thiagoianuch

README.md of my profile
https://github.com/thiagoianuch/thiagoianuch

cplusplus japanese-language opengl sfml thiagoianuch unreal-engine

Last synced: about 4 hours ago
JSON representation

README.md of my profile

Awesome Lists containing this project

README

        

```c++
#include

class Profile {
private:
std::string name;
int age;
std::string location;

public:
Profile(std::string name, int age, std::string location) {
this->name = name;
this->age = age;
this->location = location;
}

void introduce() {
std::cout << "Name: " << name << std::endl;
std::cout << "Age: " << age << std::endl;
std::cout << "Location: " << location << std::endl;

std::cout << "==================================================================================" << std::endl;
std::cout << "Welcome to my profile!" << std::endl;
std::cout << "I am in the 4th semester of Computer Science." << std::endl;
std::cout << "Currently learning game development with C++, using Unreal Engine, SFML and OpenGL" << std::endl;
std::cout << "Also studying Japanese and currently at N5 level." << std::endl;
std::cout << "==================================================================================" << std::endl;
}
};

int main()
{
Profile profile("Thiago Ianuch", 21, "Curitiba - Brazil");

profile.introduce();

return 0;
}
```













My Itch.io: