Blog

  • Quick thought #1

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

  • Hello world!

    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;
    }