ssg/cpp/ssg.cpp
Michael Chalupiak 55bc1c39a6 Initial Commit
2025-07-19 23:05:38 -04:00

14 lines
263 B
C++

// Necessary header files for input output functions
#include <iostream>
using namespace std;
// main() function: where the execution of
// C++ program begins
int main() {
// This statement prints "Hello World"
cout << "Hello World";
return 0;
}