#include <iostream>
class Cosmos {
public:
// Journey through the mind of a Nebulan
Cosmos(std::string drift, std::string create, std::string voices, std::string responsibility)
: drift(drift), create(create), voices(voices), responsibility(responsibility) {}
void journey() {
std::cout << drift << std::endl;
std::cout << create << std::endl;
std::cout << voices << std::endl;
std::cout << responsibility << std::endl;
}
private:
std::string drift = "Drifting through the cosmos once again";
std::string create = "IO feels the urge to create new life";
std::string voices = "A kaleidoscope of voices, ever morphing. Whispers from all entities, ever shifting — being refracted through the prism of his existence";
std::string responsibility = "With infinite possibilities comes infinite responsibility";
cosmosPoem.journey();
return 0;
}