β
#include <string>
struct Human {
std::string name {"James π¦Ύ"};
std::string occupation {"Ambulance Driver π"};
std::string location {"35.0333Β°N, 138.888Β°E π"};
std::string hobbies[3] {"Rock Climbing π§", "Debugging π", "3D Printing π§"};
std::string currentProjects {"ScoreTracker", "Etterna β¬οΈ - github.com/etternagame/etterna"};
std::string needHelpWith {"Studying Mandarin and Japanese! π"};
std::string intro {"Hello!π I'm James. I like to write code."
"Feel free to contact me. Have a nice day!"};
};
β
β
#include <string>
struct Human {
std::string name {"James π¦Ύ"};
std::string occupation {"Ambulance Driver π"};
std::string location {"35.0333Β°N, 138.888Β°E π"};
std::string hobbies[3] {"Rock Climbing π§", "Debugging π", "3D Printing π§"};
std::string currentProjects {"ScoreTracker", "Etterna β¬οΈ - github.com/etternagame/etterna"};
std::string needHelpWith {"Studying Mandarin and Japanese! π"};
std::string intro {"Hello!π I'm James. I like to write code."
"Feel free to contact me. Have a nice day!"};
};
β