When you’re using WordPress one major since last time…

When you’re using WordPress one major since last time…

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!
#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main()
{
vector<string> msg {"Hello", "world!"};
for (const string& word : msg)
{
cout << word << " ";
}
cout << endl;
}