Jump to content

Understanding C++/Programming Paradigms

From Wikibooks, open books for an open world

This is the current revision of this page, as edited by 2001:16a2:c064:53c2:5a5a:54fb:f21e:6de2 (discuss) at 13:01, 6 November 2021 (source code was clearly wrong and had errors). The present address (URL) is a permanent link to this version.

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
/*  * helloworld.cpp  * Displays:  * Hello World!  * My name is JL!  */ #include <iostream> int main () {  std::cout << "Hello World!" << std::endl << "My name is JL!" << std::endl;  return 0; // exit program  }