Hello World: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

25 February 2023

  • curprev 15:4215:42, 25 February 2023Luthersturm talk contribs 388 bytes +388 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]"