Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/thiagoianuch/thiagoianuch
- Owner: ThiagoIanuch
- Created: 2023-07-02T00:26:49.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-16T04:02:38.000Z (about 1 month ago)
- Last Synced: 2024-10-18T18:53:38.099Z (about 1 month ago)
- Topics: cplusplus, japanese-language, opengl, sfml, thiagoianuch, unreal-engine
- Homepage:
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```c++
#includeclass 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;
}
```