Merge pull request #1 from majorlinux/majorTest

This commit is contained in:
Marcus Summers
2025-08-12 23:26:00 -04:00
committed by GitHub

View File

@@ -1,7 +1,9 @@
#include <iostream> #include <iostream>
using namespace std;
int main() { int main() {
std::cout << "Hello, World!" << std::endl; cout << "Hello, World!" << endl;
return 0; return 0;
} }
// This program prints "Hello, World!" to the console. // This program prints "Hello, World!" to the console.