Hello World
Hello World is often the first project programmers execute in order to verify that the code and the environment work as expected.
Examples[edit | edit source]
The following is an example of a 'Hello World' project in C++:
#include <iostream> int main() { std::cout << "Hello World!"; return 0; }