c++ official website code example
Example 1: c++
C++ is a high-level, general-purpose programming language.
//totally not right there ----------------------------------->
Example 2: c++
#include <iostream>
int main() {
std::cout << "Hello, world!" << std::endl;
return 0;
}