Merge pull request #739 from MridulRaturi/master

This commit is contained in:
Richie Bendall 2020-04-28 05:21:51 +12:00 committed by GitHub
commit 37a41b5d21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,8 @@
#include <iostream>
using namespace std;
int main()
{
std::cout << "Hello World\n";
cout << "Hello World\n";
}