Первый Hello World

Давайте рассмотрим код программы ниже:

#include <iostream>

int main() {
  std::cout << "Hello World!" << std::endl;
}

...