Added the standard namespace to save time

This commit is contained in:
2025-08-12 23:23:16 -04:00
parent 4371fe4d7d
commit c26a59a055

View File

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