hello.cpp

URL: https://mirkwood.cs.edinboro.edu/~bennett/class/cmsc3100/spring2026/notes/intro/code/hello.cpp
 
#include <iostream>
// this is a demo c++ program.
//
// For testing my new code display system.
//

using namespace std;

const string GREETING{"Hello World!"};

int main() {
   printf("%s\n", GREETING);

   cout << GREETING << endl;

   return 0;
}