class Terebiki: public DigitalArtist, public TraditionalArtist, public MusicComposer, public Programmer, public GameDeveloper {
public:
std::ostream& meow(std::ostream& o) const { o << "Welcome to my page! I'm Terebiki!"; return o; }
std::ostream& introduce(std::ostream& o) const {
o << "It is a pleasure meeting you! On this page, you will find an evergrowing library of games made by yours truly!";
return o;
}
std::ostream& teaser(std::ostream& o) const {
o << "And you? Have you tried Season Island yet? No? Well, that's because I'm still working on it!!";
return o;
}
private:
std::string m_music = "Who's this?";
}
int main() {
std::cout << "Meow";
return 0;
}