Hello World

From Bag of Tricks
Revision as of 15:42, 25 February 2023 by Luthersturm (talk | contribs) (Created page with "Hello World is often the first project programmers execute in order to verify that the code and the environment work as expected. == Examples == The following is an example of a 'Hello World' project in C++: <pre> #include <iostream> int main() { std::cout << "Hello World!"; return 0; } </pre> ==Links== [https://www.bagoftricks.tech/hello-world/ Hello World - Bag of Tricks]")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

Links[edit | edit source]

Hello World - Bag of Tricks