Poems » Program

#include <iostream>
#include <string>

using namespace std;

int main()
{
    string PoemName = "\"Program\"";
    cout << PoemName
         << "\n\n"

         << "Build tools are ready,\n"
         << "All libraries are installed.\n"
         << "Now I can start working,\n"
         << "So I launch my IDE.\n\n"

         << "I create a project,\n"
         << "Start writing lines of code,\n"
         << "And build them to test them.\n"
         << "Everything is fine.\n\n"

         << "After a few builds,\n"
         << "I start getting errors.\n"
         << "I'm getting tired,\n"
         << "So I forget semicolons.\n\n"

         << "I have my browser open,\n"
         << "With seven tabs full of docs.\n"
         << "I start using advanced features,\n"
         << "From threads to streams.\n\n"

         << "I write even more code,\n"
         << "The project gets even more complex.\n"
         << "I'm a machine,\n"
         << "Transforming coffee into lines of code.\n\n"

         << "I manage to make what I want.\n"
         << "I make one final build,\n"
         << "Choose a licence,\n"
         << "Then share it with the world.\n";

    // Now the poem is over, so we
    return 0;
}

Notes/trivia

  • The code above should be compilable using any C++ toolchain. I said "should", because I'm sure there are some that would have issues.
  • Yes, my brain got the idea to write this one day. Yes, my brain is weird. Deal with it. 😎