Added the standard namespace to save time
This commit is contained in:
parent
4371fe4d7d
commit
c26a59a055
1 changed files with 3 additions and 1 deletions
4
main.cpp
4
main.cpp
|
|
@ -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.
|
||||||
Loading…
Add table
Reference in a new issue