#include <iostream>
#include <vector>
std::vector<std::string> langs { "C", "C++", "C#", "JavaScript", "Java" };
std::vector<std::string> learning_skills {"Reverse Engineering", "Python", "SQL", "PHP"};
int main() {
std::cout<<"Mexican, Spanish and English\n";
std::cout << "Hello, im Emiliano Rios i study Software Engineering, my aim its totally learn backend skills,\ni love complex and hard proyects because they keep me in learning!";
std::cout << "This are my current skills\n";
for (auto it : langs)
{
std::cout << it << "\n";
}
std::cout << "\nMore Skills ---->\n\n";
for (auto it : learning_skills)
{
std::cout << it << "\n";
}
return 0;
}
🤓
Working
Popular repositories 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.
