xxxxxxxxxx
// essential things
#include <iostream>
#include <string>
using namespace std;
//string variable
string printMe = "hehe cool";
int main(){
//print text
cout << printMe << endl;
// ^^^^^^^^ string variable
return 0;
}