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
commit 7a140ef3ac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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.